I'm loading some assembly types of my Entities and some of then appears with this value "<>c" in the name
what are these types? And how do I ignore them? (whitout load it) If i need...
They're C#-compiler-generated types, e.g. for anonymous types, iterator blocks, closures that capture local variables, and async functions. This is nothing to do with Entity Framework in itself.
If you want to ignore all compiler-generated types, you can check whether the type has the [CompilerGenerated]
attribute applied to it. If you want to do it just from the name, then see whether the name contains <
or >
- if it does, it's not a valid C# type name, and will have been autogenerated.
See more on this question at Stackoverflow