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
Throw when attempting to lazy-load after no-tracking query
Part of #10042, #10509, #3797
It would be good to make this work in a future release, but this involves running a no-tracking query with fixup where the root entity is already materialized. For now, this will throw so we can make it work later without it being a breaking change.
Lazy-loading behaviors for non-tracked entities:
* Proxies:
* No-op if entity was explicitly detached
* Throw if it was queried as no-tracking
* Lazy-loading entities with loader service property:
* No-op if entity was explicitly detached
* Throw if it was queried as no-tracking
* Lazy-loading entities without service property:
* Throw even if entity was explicitly detached, but entity can set loader to null, or a service property can be defined
* Throw if it was queried as no-tracking
0 commit comments