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
I'm getting Error getting schema mappings for entity type with an internal exception 2 Fragments found.. Debugging the code it seems like that is literally the issue, although I don't understand the implications. The class referenced doesn't use any enums but does however use two separate calls of Entity.Map( m => { m.ToTable(" ") } to split the properties across two tables.
Removing the fragments exception and taking fragments.FirstOrDefault() seems to generate the correct lookup SQL, but I assume it would break any enums on my fragmented class?
The text was updated successfully, but these errors were encountered:
I'm getting
Error getting schema mappings for entity type
with an internal exception2 Fragments found.
. Debugging the code it seems like that is literally the issue, although I don't understand the implications. The class referenced doesn't use any enums but does however use two separate calls ofEntity.Map( m => { m.ToTable(" ") }
to split the properties across two tables.Removing the fragments exception and taking
fragments.FirstOrDefault()
seems to generate the correct lookup SQL, but I assume it would break any enums on my fragmented class?The text was updated successfully, but these errors were encountered: