Linq to Sql:多个左外连接
我在弄清楚如何使用 LINQ to SQL 使用多个左外连接时遇到了一些麻烦。 我了解如何使用一个左外连接。 我正在使用VB.NET。 下面是我的 SQL 语法。
T-SQL
SELECT
o.OrderNumber,
v.VendorName,
s.StatusName
FROM
Orders o
LEFT OUTER JOIN Vendors v ON
v.Id = o.VendorId
LEFT OUTER JOIN Status s ON
s.Id = o.StatusId
WHERE
o.OrderNumber >= 100000 AND
o.OrderNumber <= 200000
I'm having some trouble figuring out how to use more than one left outer join using LINQ to SQL. I understand how to use one left outer join. I'm using VB.NET. Below is my SQL syntax.
T-SQL
SELECT
o.OrderNumber,
v.VendorName,
s.StatusName
FROM
Orders o
LEFT OUTER JOIN Vendors v ON
v.Id = o.VendorId
LEFT OUTER JOIN Status s ON
s.Id = o.StatusId
WHERE
o.OrderNumber >= 100000 AND
o.OrderNumber <= 200000
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这可能更清晰(您不需要所有
into
语句):这是另一个左连接示例
This may be cleaner (you dont need all the
into
statements):Here is another left join example
无法访问 VisualStudio(我在 Mac 上),但使用 http://bhaidar.net/cs/archive/2007/08/01/left-outer-join-in-linq-to-sql.aspx< /a> 看来你可以做这样的事情:
Don't have access to VisualStudio (I'm on my Mac), but using the information from http://bhaidar.net/cs/archive/2007/08/01/left-outer-join-in-linq-to-sql.aspx it looks like you may be able to do something like this:
我弄清楚了如何使用 LINQ to SQL 在 VB.NET 中使用多个左外连接:
I figured out how to use multiple left outer joins in VB.NET using LINQ to SQL:
在 VB.NET 中使用函数,
In VB.NET using Function,
我认为您应该能够遵循 此帖子。 它看起来真的很难看,但我认为你可以做两次并得到你想要的结果。
我想知道这是否实际上是您最好使用 DataContext.ExecuteCommand(...) 而不是转换为 linq 的情况。
I think you should be able to follow the method used in this post. It looks really ugly, but I would think you could do it twice and get the result you want.
I wonder if this is actually a case where you'd be better off using
DataContext.ExecuteCommand(...)
instead of converting to linq.我正在为我的应用程序使用这个 linq 查询。 如果这符合您的要求,您可以参考此。 这里我加入了(左外连接)3 个表。
I am using this linq query for my application. if this match your requirement you can refer this. here i have joined(Left outer join) with 3 tables.