Subsonic 如何过滤已加载的集合?

发布于 2024-08-31 00:21:11 字数 231 浏览 0 评论 0原文

目前我正在使用 Subsonic 2.1 和 .NET 2.1,并且遇到一个问题,我试图过滤包含 300 多个项目的预加载集合。我正在使用以下内容尝试执行过滤器:

orders = MasterOrders.Where("account", mbrAccount).Load();

最终结果是将订单设置为等于整个 MasterOrders 集合,而不是过滤后的结果。有什么建议吗?

Currently I am using Subsonic 2.1 and .NET 2.1 and I have an issue where I am attempting to filter a pre-loaded collection with 300+ items. I am using the following to attempt to preform the filter:

orders = MasterOrders.Where("account", mbrAccount).Load();

The end results is setting orders equal to the entire MasterOrders collection and not the filtered results. Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

戈亓 2024-09-07 00:21:11

如果您的目标是 Dotnet Framework 3.5,则可以使用 LINQ 选择查询。然后将其转换为 List

If you're targeting Dotnet Framework 3.5 you can use a LINQ select-query. Then convert it to a List<MasterOrder>.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文