Exemplo n.º 1
0
 /// <summary>
 /// Occurs in DataPortal_Delete, after the delete operation, before Commit().
 /// </summary>
 partial void OnDeletePost(DataPortalHookArgs args);
Exemplo n.º 2
0
 /// <summary>
 /// Occurs after the fetch operation (object or collection is fully loaded and set up).
 /// </summary>
 partial void OnFetchPost(DataPortalHookArgs args);
Exemplo n.º 3
0
 /// <summary>
 /// Occurs after setting all defaults for object creation.
 /// </summary>
 partial void OnCreate(DataPortalHookArgs args);
 /// <summary>
 /// Occurs after the low level fetch operation, before the data reader is destroyed.
 /// </summary>
 partial void OnFetchRead(DataPortalHookArgs args);
Exemplo n.º 5
0
 /// <summary>
 /// Occurs in DataPortal_Insert, after the insert operation, before setting back row identifiers (ID and RowVersion) and Commit().
 /// </summary>
 partial void OnInsertPost(DataPortalHookArgs args);
Exemplo n.º 6
0
 /// <summary>
 /// Occurs in DataPortal_Insert, after the update operation, before setting back row identifiers (RowVersion) and Commit().
 /// </summary>
 partial void OnUpdatePost(DataPortalHookArgs args);
Exemplo n.º 7
0
 protected override void Child_Create()
 {
     var args = new DataPortalHookArgs();
     OnCreate(args);
     base.Child_Create();
 }