使用 RIA 服务和 Telerik RadGridView 排序时出现 TypeAccessException

发布于 2024-12-02 05:12:03 字数 585 浏览 0 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

执手闯天涯 2024-12-09 05:12:03

您可以将 .ToArray().ToList() 调用添加到 LINQ 查询的末尾,例如:

public IEnumerable<Orders> OrderList
    {
        get
        {
            return  datacontext.Orders.OrderBy(o=>o.OrderDate).ToList();
        }
    }

You can add .ToArray() or .ToList() call to the end of your LINQ query, for example:

public IEnumerable<Orders> OrderList
    {
        get
        {
            return  datacontext.Orders.OrderBy(o=>o.OrderDate).ToList();
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文