SqlDataSourceView.Select(DataSourceSelectArguments) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用 SelectCommand SQL 字符串以及 SelectParameters 集合中的所有参数从基础数据库中检索数据。
public:
System::Collections::IEnumerable ^ Select(System::Web::UI::DataSourceSelectArguments ^ arguments);
public System.Collections.IEnumerable Select (System.Web.UI.DataSourceSelectArguments arguments);
override this.Select : System.Web.UI.DataSourceSelectArguments -> System.Collections.IEnumerable
Public Function Select (arguments As DataSourceSelectArguments) As IEnumerable
参数
- arguments
- DataSourceSelectArguments
DataSourceSelectArguments,用于请求对数据执行基本数据检索操作以外的操作。
返回
一个数据行的 IEnumerable 列表。
例外
传递给 Select(DataSourceSelectArguments) 方法的 selectArgs
指定数据源在检索数据时应执行一些附加操作,以便对检索到的数据启用分页或排序,但此数据源控件不支持请求的功能。
SqlDataSource 无法与基础数据源建立连接。
注解
方法 Select 调用 ExecuteSelect 方法,传递 selectArgs
参数。
ExecuteSelect DataView如果 属性设置为 DataSet 值,或者DataSourceMode如果 属性设置为 值,DataReaderDataSourceMode则 该方法返回 IDataReader 对象。 IDataReader读取完数据后关闭 对象。