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
During some actual usage of updatable entity views with subtypes, we came to the conclusion that it's best to allow subtypes for attributes by default rather than force users to declare allowed subtypes.
We still consider the statically declared type to determine if creatable or updatable subtypes are allowed.
The general idea is, if the static type is read-only, all read-only subtypes of the declared type are allowed.
If the type is creatable or the cascades contains PERSIST, we also allow all creatable subtypes.
If the type is updatable or the cascades contains UPDATE, we also allow all updatable subtypes.
If the subtypes are declared, we only allow the given set of subtypes.
The text was updated successfully, but these errors were encountered:
During some actual usage of updatable entity views with subtypes, we came to the conclusion that it's best to allow subtypes for attributes by default rather than force users to declare allowed subtypes.
We still consider the statically declared type to determine if creatable or updatable subtypes are allowed.
The general idea is, if the static type is read-only, all read-only subtypes of the declared type are allowed.
If the type is creatable or the cascades contains
PERSIST
, we also allow all creatable subtypes.If the type is updatable or the cascades contains
UPDATE
, we also allow all updatable subtypes.If the subtypes are declared, we only allow the given set of subtypes.
The text was updated successfully, but these errors were encountered: