Tech
Forums
Jobs
Books
Events
Videos
Live
More
Interviews
Certification
Training
Career
Members
News
Blogs
Contribute
An Article
A Blog
A Video
An Ebook
An Interview Question
Register
Login
1
Answer
Linq join query in C#
Sri Kanth Dharapaneni
7y
211
1
Reply
i have the following query in Linq. how can i convert this one into list or data table without loops.
var joinedList = (from lid in liDtls
join licomd in liCommoDtls on lid.QLFBOMId equals licomd.QLFBOMId into temp
from detail in temp.DefaultIfEmpty()
select new
{
CommoidAppl = detail == null ? String.Empty : "Y"
});
Post
Reset
Cancel
Answers (
1
)
Next Recommended Forum
How to access sql server 2008 r2 database in LAN in C#
Best Approach of Entity Framework