EntityDataSource.AutoSort 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示 EntityDataSource 控件是否支持在运行时对数据进行排序。
public:
property bool AutoSort { bool get(); void set(bool value); };
public bool AutoSort { get; set; }
member this.AutoSort : bool with get, set
Public Property AutoSort As Boolean
属性值
如果用户可以对数据进行排序,则为 true
;否则为 false
。 默认值是 true
。
注解
控件 EntityDataSource 支持自动对查询返回的数据进行排序。 控件 AutoSort 的 EntityDataSource 属性是一个布尔属性,指示是否为绑定到数据控件的查询返回的数据启用排序。 当此属性设置为 true
时,控件EntityDataSource会根据数据绑定控件提供给 的信息,将相应的查询生成器方法ObjectQuery<T>添加到 。EntityDataSourceView
属性的值AutoSort确定CanSort支持数据源的 控件的 EntityDataSourceView 和 CanRetrieveTotalRowCount 属性是 true
或 false
。