TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Sri Kanth Dharapaneni
1.7k
7
564
Linq join query in C#
Feb 13 2017 1:39 PM
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"
});
Reply
Answers (
1
)
How to access sql server 2008 r2 database in LAN in C#
Best Approach of Entity Framework