You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case anyone else runs into this, I've tracked it down to being an issue with entities represented by an abstract class that has an enum property on it. It looks like we get the mapping fragments from the derived class, which doesn't include the base class properties. I honestly didn't spend a lot of time on it because I have other commitments, but for anyone that is interested, in MetaDataHandler.FindEnumReferences, you can change:
foreach (var entityType in entities)
To:
foreach (var entityType in entities.Where(e => !e.Abstract))
Hi,
I've added the following code to the seed method (as per the docs):
var enumToLookup = new EnumToLookup(); enumToLookup.Apply(context);
But when running it I get the exception:
Not too sure what this means, any tips?
Thanks
The text was updated successfully, but these errors were encountered: