Cascade style All implementation #3611
Unanswered
forenheith
asked this question in
Q&A
Replies: 1 comment
-
That is not a chain of call. It is a list of actions it will cascade. When one of the listed action occurs on the owning entity, that cascade style causes that action to be cascaded to the owned entity/entities. It does not trigger the other actions. So, that is just: nhibernate-core/src/NHibernate/Engine/CascadeStyle.cs Lines 146 to 152 in 8945299 Used there, by example: nhibernate-core/src/NHibernate/Engine/Cascade.cs Lines 97 to 138 in 8945299 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Where can I find the source code that interprets the All invocation as the chain of calls listed here?
/// <summary> save / delete / update / evict / lock / replicate / merge / persist</summary> public static readonly CascadeStyle All = new AllCascadeStyle();
Beta Was this translation helpful? Give feedback.
All reactions