SoftSqlOperateExecuteSelectEnumerableT 方法 (String, String) |
选择指定类型数据集合执行SQL语句,并返回指定类型的数据集合,该方法应该放到try-catch代码块中
命名空间:
HslCommunication.BasicFramework
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static List<T> ExecuteSelectEnumerable<T>(
string conStr,
string cmdStr
)
where T : new(), ISqlDataType
Public Shared Function ExecuteSelectEnumerable(Of T As {New, ISqlDataType}) (
conStr As String,
cmdStr As String
) As List(Of T)
public:
generic<typename T>
where T : gcnew(), ISqlDataType
static List<T>^ ExecuteSelectEnumerable(
String^ conStr,
String^ cmdStr
)
static member ExecuteSelectEnumerable :
conStr : string *
cmdStr : string -> List<'T> when 'T : new() and ISqlDataType
参数
- conStr
- 类型:SystemString
数据库的连接字符串 - cmdStr
- 类型:SystemString
sql语句,选择数据表的语句
类型参数
- T
[缺少 "M:HslCommunication.BasicFramework.SoftSqlOperate.ExecuteSelectEnumerable``1(System.String,System.String)" 的 <typeparam name="T"/> 文档]
返回值
类型:
ListT结果数据集合
异常 异常 | 条件 |
---|
SqlException | |
InvalidOperationException | |
参见