Subsonic 如何过滤已加载的集合?
目前我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的目标是 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>.