예제 #1
0
 public static async Task <OperationResponse> InsertAsync <T>(ParamList parameters, string connectionName = null, bool captureException = false, string schema = null, DbConnection connection = null, IConfiguration config = null)
     where T : class
 {
     return(await InsertAsync <T>(parameters.GetParameters(), connectionName, captureException, schema, connection, config).ConfigureAwait(false));
 }
예제 #2
0
 public static async Task <OperationResponse> DestroyAsync <T>(ParamList parameters, string connectionName = null, bool captureException = false, string schema = null, DbConnection connection = null)
     where T : class
 {
     return(await DestroyAsync <T>(parameters.GetParameters(typeof(T), OperationDestroy), connectionName, captureException, schema, connection));
 }