I have a .Net 5.0 project and I'm getting an error on mmFactory in AAppTest.cs
Here are the particulars:
Data Project using Framework .Net 5 (MM Standard)
MM Assemblies:
Oakleaf.MM2019.Framework.EF.Full
Oakleaf.MM2019.Framework.EF.Standard
Oakleaf.MM2019.Framework.Standard
Oakleaf.MM2019.Interfaces.Standard
In AAppTest.cs
An error attached to mmFactory:
Error CS0012 The type 'mmFactoryStandard' is defined in an assembly that is not referenced. You must add a reference to assembly 'OakLeaf.MM2019.Framework.EF,
When I Add Oakleaf.MM2019.Framework.EF, I get 2000+ errors, most of which are some variant of
Error CS0433 The type 'mmBusinessRule' exists in both 'OakLeaf.MM2019.Framework.EF.Standard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=0e0547488df5a428' and 'OakLeaf.MM2019.Framework.EF, Version=4.8.1.0,
Obviously, Framework.EF.Standard is a replacement for Framework.EF and both should not be inlcuded in the same project (which was my original assumption).
It looks like mmFactoryStandard is not defined in Oakleaf.MM2019.Framework.EF.Standard and should be. Or, I should be using something else. Or I’m doing something wrong (most likely).
Thanks for your help.