Esempio n. 1
0
 /// <summary>
 /// Deletes the specified row in the database.
 /// </summary>
 /// <typeparam name="T">The type of the row object.</typeparam>
 /// <param name="row">The row to delete.</param>
 /// <param name="forceMirroring">If true, then the optimistic concurrency check is done which throws an exception if the check fails.</param>
 public Result <T> DeleteGo <T>(T row, bool forceMirroring = true)
     where T : DbRow
 {
     return(PublicInvoker.Call <Result <T> >(Assembly.GetCallingAssembly(), (ca) =>
                                             Crud.DeleteGo <T>(ca, row, forceMirroring, this)));
 }