LINQ nested joins
Posted
by ace
on Stack Overflow
See other posts from Stack Overflow
or by ace
Published on 2010-06-16T04:55:12Z
Indexed on
2010/06/16
5:02 UTC
Read the original article
Hit count: 218
Im trying to convert a SQL join to LINQ. I need some help in getting the nested join working in LINQ.
This is my SQL query, Ive cut it short just to show the nested join in SQL:
LEFT OUTER JOIN dbo.TaskCommentRecipient RIGHT OUTER JOIN dbo.TaskComment ON dbo.TaskCommentRecipient.TaskCommentID = dbo.TaskComment.TaskCommentID ON dbo.Task.Taskid = dbo.TaskComment.TaskCommentTaskId
© Stack Overflow or respective owner