コード例 #1
0
 /// <summary>
 /// Called by the server-side DataPortal after calling the requested DataPortal_XYZ method.
 /// </summary>
 /// <param name="e">The DataPortalContext object passed to the DataPortal.</param>
 protected override void DataPortal_OnDataPortalInvokeComplete(Csla.DataPortalEventArgs e)
 {
     if (ApplicationContext.ExecutionLocation == ApplicationContext.ExecutionLocations.Server &&
         e.Operation == DataPortalOperations.Update)
     {
         // this runs on the server
         SupplierList.InvalidateCache();
     }
 }
コード例 #2
0
        // TODO: edit "SupplierEdit.cs", uncomment the "OnDeserialized" method and add the following line:
        // TODO:     SupplierEditSaved += SupplierEditSavedHandler;

        private void SupplierEditSavedHandler(object sender, Csla.Core.SavedEventArgs e)
        {
            // this runs on the client
            SupplierList.InvalidateCache();
        }