我正在使用EntityDataSource和RadGrid。我有将EntityDataSource“OrderBy”和“Select Top”语句组合在一起的问题。
<asp:EntityDataSource runat="server"
ID="EntityDataSourceAlarm"
ConnectionString="name=AlarmEntities"
DefaultContainerName="AlarmEntities"
EnableFlattening="False"
EntitySetName="Alarms"
OrderBy="it.Status ASC, it.TS DESC"
Select="top(10) it.[OID], it.[TS], it.[Status]">
</asp:EntityDataSource>
我希望order by子句在之前应用 select子句。当省略select子句的“top(10)
”部分时,这一切都有效。首先应按[Status]排序,再按[TS]排序。然后在select语句中使用top,似乎它会丢弃order by子句。
我正在使用.Net 4.5和EntityFramework 5。
答案 0 :(得分:1)
这是一个解决方案,我对表演持怀疑态度,但效果很好:
<asp:EntityDataSource
ID="edsHighUsage"
runat="server"
ConnectionString="name=DbEntities"
DefaultContainerName="DbEntities"
EnableFlattening="False"
EntitySetName="HighUsages"
OnSelecting="edsHighUsage_Selecting"
OrderBy="it.MonthlyCost desc"
Select="it.[PhoneNumber], it.[MonthlyCost]">
</asp:EntityDataSource>
代码隐藏:
protected void edsHighUsage_Selecting(object sender, EntityDataSourceSelectingEventArgs e)
{
e.SelectArguments.MaximumRows = 100;
}