实体框架内连接
我正在尝试在客户、订单、订单详细信息和产品之间加入
我使用以下内容生成内部联接查询
IQueryable<Customer> CustomerList = ent.Customer
.Include("orders").Include("orders.orderdetails")
.include(orders.orderdetails.products)
我需要与这些表生成内部联接,以便我可以在 where 子句中检查姓氏和名字,但它正在生成左外部加入。
如何使用这些表生成内部联接
谢谢
I am trying to join between customers,orders,orderdetails and products
I used the following to generate an inner join query
IQueryable<Customer> CustomerList = ent.Customer
.Include("orders").Include("orders.orderdetails")
.include(orders.orderdetails.products)
I need to generate an inner join with these tables so that i can check surname and firstname in where clause but it is generating left outer join.
How to generate an inner join with these tables
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望有帮助。
Hope it helps.
尝试这个
引用自 http://geekswithblogs.net/SudheersBlog/archive/2009 /06/11/132758.aspx
try this
refered from http://geekswithblogs.net/SudheersBlog/archive/2009/06/11/132758.aspx