10using System.Threading.Tasks;
20#if !(ANDROID || IOS) && !NETFX_CORE
82 event EventHandler<SavedEventArgs>
Saved;
Specifies that the object can save itself.
EventHandler< SavedEventArgs > Saved
Event raised when an object has been saved.
Task SaveAndMergeAsync()
Saves the object to the database, merging the result into the original object graph
void BeginSave(object userState)
Saves the object to the database asynchronously.
Task< T > SaveAsync()
Saves the object to the database.
T Save()
Saves the object to the database.
void BeginSave()
Saves the object to the database asynchronously.
void SaveComplete(T newObject)
INTERNAL CSLA .NET USE ONLY.
T Save(bool forceUpdate)
Saves the object to the database.
Task SaveAndMergeAsync(bool forceUpdate)
Saves the object to the database, merging the result into the original object graph
Task< T > SaveAsync(bool forceUpdate)
Saves the object to the database.