|
| void | DataPortal_Fetch ([Inject] IDataPortal< Customer > customerDataPortal) |
| |
| void | DataPortal_Create () |
| |
| void | DataPortal_Update () |
| |
| void | DataPortal_Fetch () |
| |
| void | DataPortal_Create () |
| |
| void | DataPortal_Update () |
| |
| | BusinessListBase () |
| | Creates an instance of the type. More...
|
| |
| virtual void | Initialize () |
| | Override this method to set up event handlers so user code in a partial class can respond to events raised by generated code. More...
|
| |
| virtual object | GetClone () |
| | Creates a clone of the object. More...
|
| |
| virtual void | EditChildComplete (Core.IEditableBusinessObject child) |
| | Override this method to be notified when a child object's Core.BusinessBase.ApplyEdit method has completed. More...
|
| |
| override C | AddNewCore () |
| | Override this method to create a new object that is added to the collection. More...
|
| |
| override void | InsertItem (int index, C item) |
| | Sets the edit level of the child object as it is added. More...
|
| |
| override void | RemoveItem (int index) |
| | Marks the child object for deletion and moves it to the collection of deleted objects. More...
|
| |
| override void | SetItem (int index, C item) |
| | Replaces the item at the specified index with the specified item, first moving the original item to the deleted list. More...
|
| |
| override void | ClearItems () |
| | Clears the collection, moving all active items to the deleted list. More...
|
| |
| override void | OnGetState (SerializationInfo info) |
| | Method called by MobileFormatter when an object should serialize its data. More...
|
| |
| override void | OnSetState (SerializationInfo info) |
| | Method called by MobileFormatter when an object should be deserialized. More...
|
| |
| override void | OnGetChildren (Csla.Serialization.Mobile.SerializationInfo info, Csla.Serialization.Mobile.MobileFormatter formatter) |
| | Method called by MobileFormatter when an object should serialize its child references. More...
|
| |
| override void | OnSetChildren (Csla.Serialization.Mobile.SerializationInfo info, Csla.Serialization.Mobile.MobileFormatter formatter) |
| | Method called by MobileFormatter when an object should deserialize its child references. More...
|
| |
| void | MarkAsChild () |
| | Marks the object as being a child object. More...
|
| |
| override void | OnDeserialized () |
| | Reset parent references on deserialization. More...
|
| |
| virtual void | Child_Create () |
| | Initializes a new instance of the object with default values. More...
|
| |
| virtual void | Child_Update (params object[] parameters) |
| | Saves all items in the list, automatically performing insert, update or delete operations as necessary. More...
|
| |
| virtual async Task | Child_UpdateAsync (params object[] parameters) |
| | Asynchronously saves all items in the list, automatically performing insert, update or delete operations as necessary. More...
|
| |
| virtual async Task< T > | SaveAsync (object userState, bool isSync) |
| | Saves the object to the database. More...
|
| |
| virtual void | DataPortal_OnDataPortalInvoke (DataPortalEventArgs e) |
| | Called by the server-side DataPortal prior to calling the requested DataPortal_xyz method. More...
|
| |
| virtual void | DataPortal_OnDataPortalInvokeComplete (DataPortalEventArgs e) |
| | Called by the server-side DataPortal after calling the requested DataPortal_xyz method. More...
|
| |
| virtual void | DataPortal_OnDataPortalException (DataPortalEventArgs e, Exception ex) |
| | Called by the server-side DataPortal if an exception occurs during data access. More...
|
| |
| virtual void | Child_OnDataPortalInvoke (DataPortalEventArgs e) |
| | Called by the server-side DataPortal prior to calling the requested DataPortal_XYZ method. More...
|
| |
| virtual void | Child_OnDataPortalInvokeComplete (DataPortalEventArgs e) |
| | Called by the server-side DataPortal after calling the requested DataPortal_XYZ method. More...
|
| |
| virtual void | Child_OnDataPortalException (DataPortalEventArgs e, Exception ex) |
| | Called by the server-side DataPortal if an exception occurs during data access. More...
|
| |
| virtual void | OnSaved (T newObject, Exception e, object userState) |
| | Raises the Saved event, indicating that the object has been saved, and providing a reference to the new object instance. More...
|
| |
| virtual void | SetParent (Core.IParent parent) |
| | Used by BusinessListBase as a child object is created to tell the child object about its parent. More...
|
| |