![]() |
CSLA .NET 10.0.0
A home for your business logic
|
Specifies that the object can save itself. More...
Public Member Functions | |
| object | Save () |
| Saves the object to the database. | |
| object | Save (bool forceUpdate) |
| Saves the object to the database. | |
| Task< object > | SaveAsync () |
| Saves the object to the database. | |
| Task< object > | SaveAsync (bool forceUpdate) |
| Saves the object to the database. | |
| Task | SaveAndMergeAsync () |
| Saves the object to the database, merging the result into the original object graph. | |
| Task | SaveAndMergeAsync (bool forceUpdate) |
| Saves the object to the database, merging the result into the original object graph. | |
| void | SaveComplete (object newObject) |
| INTERNAL CSLA .NET USE ONLY. | |
Events | |
| EventHandler< SavedEventArgs >? | Saved |
| Event raised when an object has been saved. | |
Specifies that the object can save itself.
| object Csla.Core.ISavable.Save | ( | ) |
Saves the object to the database.
Implemented in Csla.BusinessBase< T >, and Csla.BusinessBindingListBase< T, C >.
| object Csla.Core.ISavable.Save | ( | bool | forceUpdate | ) |
Saves the object to the database.
| forceUpdate | true to force the save to be an update. |
Implemented in Csla.BusinessBase< T >.
| Task Csla.Core.ISavable.SaveAndMergeAsync | ( | ) |
Saves the object to the database, merging the result into the original object graph.
Implemented in Csla.BusinessBase< T >, and Csla.BusinessBindingListBase< T, C >.
| Task Csla.Core.ISavable.SaveAndMergeAsync | ( | bool | forceUpdate | ) |
Saves the object to the database, merging the result into the original object graph.
| forceUpdate | true to force the save to be an update. |
Implemented in Csla.BusinessBase< T >.
| Task< object > Csla.Core.ISavable.SaveAsync | ( | ) |
Saves the object to the database.
Implemented in Csla.BusinessBase< T >, and Csla.BusinessBindingListBase< T, C >.
| Task< object > Csla.Core.ISavable.SaveAsync | ( | bool | forceUpdate | ) |
Saves the object to the database.
| forceUpdate | true to force the save to be an update. |
Implemented in Csla.BusinessBase< T >.
| void Csla.Core.ISavable.SaveComplete | ( | object | newObject | ) |
INTERNAL CSLA .NET USE ONLY.
| newObject | The new object returned as a result of the save. |
| EventHandler<SavedEventArgs>? Csla.Core.ISavable.Saved |
Event raised when an object has been saved.