Exemple #1
0
 public static List <T> Execute <T>(this DbConnection @this, string commandText, object parameters) where T : new() =>
 Querying.Execute <T>(@this, commandText, parameters);
Exemple #2
0
 public static List <T> Execute <T>(this DbConnection @this, string commandText, bool isStoredProcedure, object parameters) where T : new() =>
 Querying.Execute <T>(@this, commandText, isStoredProcedure, parameters);
Exemple #3
0
 public static List <T> Execute <T>(this DbConnection @this, string commandText) where T : new() =>
 Querying.Execute <T>(@this, commandText);