使用 RIA 服务和 Telerik RadGridView 排序时出现 TypeAccessException
我在使用 RIA 服务/MVVM 的 SL 应用程序中使用 RadGrid
在我的 Viewmodel 中,我有一个 IEnumerable 集合,在简单地公开集合时工作正常:
public IEnumerable<Orders> OrderList
{
get
{
return datacontext.Orders;
}
}
但是,当我尝试在绑定之前对集合进行排序时(如下所示),我得到一个错误“消息:System.typeaccessException 通过方法 DynamicClass.lambda ..... 进行尝试”并且应用程序挂起:
public IEnumerable<Orders> OrderList
{
get
{
return datacontext.Orders.OrderBy(o=>o.OrderDate);
}
}
您能否建议如何公开排序的数据而不导致此问题?
I'm using RadGrid in a SL app using RIA services / MVVM
In my Viewmodel I have an IEnumerable collection that works fine when simply exposing the collection:
public IEnumerable<Orders> OrderList
{
get
{
return datacontext.Orders;
}
}
However, when I try to sort the collection before it's bound (as follows) I get an error "Message: System.typeaccessexception Attempt by method DynamicClass.lambda ..... " and the application hangs:
public IEnumerable<Orders> OrderList
{
get
{
return datacontext.Orders.OrderBy(o=>o.OrderDate);
}
}
Can you advise how to expose the data sorted without causing this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
.ToArray()
或.ToList()
调用添加到 LINQ 查询的末尾,例如:You can add
.ToArray()
or.ToList()
call to the end of your LINQ query, for example: