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