c# – 实体框架 – 在同一列中按多个条件选择 – 多对多

c# – 实体框架 – 在同一列中按多个条件选择 – 多对多,第1张

概述我在这里问了非常相似的问题 Entity framework – select by multiple conditions in same column – referenced table 现在关系是多对多的. 所以我有3个表:order,items和orderItem(items是一个Junction表) 再次..我想选择至少有一个orderItem与价格100和至少一个orderItem与 我在这里问了非常相似的问题
Entity framework – select by multiple conditions in same column – referenced table

现在关系是多对多的.
所以我有3个表:order,items和orderItem(items是一个Junction表)
再次..我想选择至少有一个orderItem与价格100和至少一个orderItem与价格200的所有订单

我真的不知道如何编辑这个场景.

var orders = from o in kontextdbs.orders             select o;foreach(int value in values){          int tmpValue = value;      orders = orders.Where(x => kontextdbs.order_item.Where(oi => x.ID == oi.order_ID)}
解决方法 这是修改后的版本

foreach(int value in values){          int tmpValue = value;      orders = orders.Where(x => (from oi in kontextdbs.order_item                                 join i in kontextdbs.items on oi.item_ID equals i.ID                                 where x.ID == oi.order_ID                                 select i).Any(y => y.price == tmpValue));    }
总结

以上是内存溢出为你收集整理的c# – 实体框架 – 在同一列中按多个条件选择 – 多对多全部内容,希望文章能够帮你解决c# – 实体框架 – 在同一列中按多个条件选择 – 多对多所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1228909.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存