I have two tables "Event(EventId,EventName,....,UpdatedBy)", "User(UserId,Username...)" and a bridge table "EventAttendee(EventId,UserId)"
from c in context.Events
from u in c.users
where c.EventId == eventId
select s
the above is doing an inner join so if there are no records in EventAttendee table then I am not getting any records.
I want to always get event details from the Event table and if there are any records in EventAttendee table for that event then get the UserId and Username. How to do this in linq to sql using Entity framework since my entity modal does not show bridge table?