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
Proxy generation is a very heavy process perf-wise, and we may be doing it in cases where we don't have to (came out of investigating the model in #20135).
For lazy loading proxies, a type without any virtual methods shouldn't require proxies
For change tracking proxies, we currently set up all the entity types in the model (and throw if any type is sealed). We could have some sort of type-by-type opt-in/opt-out.
Note that mixing notification entities with non-notification entities tends to be a pit of failure (based on EF6 experience) which is why we do not allow it in EF Core.
Proxy generation is a very heavy process perf-wise, and we may be doing it in cases where we don't have to (came out of investigating the model in #20135).
/cc @ajcvickers
The text was updated successfully, but these errors were encountered: