Exemple #1
0
 /// <summary>
 /// Occurs in DataPortal_Delete, after the delete operation, before Commit().
 /// </summary>
 partial void OnDeletePost(DataPortalHookArgs args);
Exemple #2
0
 /// <summary>
 /// Occurs after the fetch operation (object or collection is fully loaded and set up).
 /// </summary>
 partial void OnFetchPost(DataPortalHookArgs args);
Exemple #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);
Exemple #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);
Exemple #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);
Exemple #7
0
 protected override void Child_Create()
 {
     var args = new DataPortalHookArgs();
     OnCreate(args);
     base.Child_Create();
 }