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
As described in #1413, ISession.IsDirty default implementation can have side effects with serious consequences. They should be documented.
It will trigger pending SaveOrUpdate cascades.
The triggered Save will generates the ids of the saved entities. Depending on the id generator, this may cause calls to the database, or even the direct insertion of the entities when using the identity generator.
The text was updated successfully, but these errors were encountered:
@fredericDelaporte I think that we do not need to create an issue together with a PR, eg, if you know that you'll submit a PR shortly after the issue is created.
As described in #1413,
ISession.IsDirty
default implementation can have side effects with serious consequences. They should be documented.SaveOrUpdate
cascades.Save
will generates the ids of the saved entities. Depending on the id generator, this may cause calls to the database, or even the direct insertion of the entities when using theidentity
generator.The text was updated successfully, but these errors were encountered: