示例#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);