コード例 #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);