LINQ to Entites - Left Outer Join - SQL 2000
- by user255234
Hi!
I'm using Linq to Entities.
I have the following query in my code, it includes left outer Join:
var surgeonList = (from item in context.T1_STM_Surgeon.Include("T1_STM_SurgeonTitle")
.Include("OTER").Include("OSLP")
join reptable in context.OSLP on item.Rep equals reptable.SlpCode into…