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
This is a work-item issue emerging from the parent discussion issue which already captures the community demand/severity. We'd like to regain functionality that existed in EF 6 but has been missing in EF Core.
EF Core should have the following events
ObjectMaterialized: An event fired when the raw data read from the database is filled into the entity object. As seen in EF 6 here.
SavingChanges: An event fired when the entity object is just about to be written to the database. As seen in EF 6 here.
SavedChanges: An event fired after the SavingChanges operation has completed (successfully or otherwise)
The text was updated successfully, but these errors were encountered:
This is a work-item issue emerging from the parent discussion issue which already captures the community demand/severity. We'd like to regain functionality that existed in EF 6 but has been missing in EF Core.
EF Core should have the following events
ObjectMaterialized
: An event fired when the raw data read from the database is filled into the entity object. As seen in EF 6 here.SavingChanges
: An event fired when the entity object is just about to be written to the database. As seen in EF 6 here.SavedChanges
: An event fired after theSavingChanges
operation has completed (successfully or otherwise)The text was updated successfully, but these errors were encountered: