我正在使用ADO.NET Entity Framework数据模型。我通过ADO.NET Entity Framework将数据从SQL发送到GridView。
但如果我使用EF
,如何对gridview'columns进行排序答案 0 :(得分:2)
您使用的是EntityDataSource
吗?您是否在GridView上启用了AllowSorting
和AllowPaging
属性?
<asp:GridView ID="GridView1" runat="server"
AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="True"
DataSourceID="EntityDataSource1">
</asp:GridView>
<asp:EntityDataSource ID="EntityDataSource1" runat="server"
ConnectionString="......"
EntitySetName="......."
Select=".........." OrderBy="......">
</asp:EntityDataSource>
马克
答案 1 :(得分:1)
读取此内容以排序ASP.NET GridView对象 MSDN ......:)