예제 #1
0
파일: Extensions.cs 프로젝트: hbbq/DbMap
 public static List <T> Execute <T>(this DbConnection @this, string commandText, object parameters) where T : new() =>
 Querying.Execute <T>(@this, commandText, parameters);
예제 #2
0
파일: Extensions.cs 프로젝트: hbbq/DbMap
 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);
예제 #3
0
파일: Extensions.cs 프로젝트: hbbq/DbMap
 public static List <T> Execute <T>(this DbConnection @this, string commandText) where T : new() =>
 Querying.Execute <T>(@this, commandText);