3
votes
Left Outer Joins in DA LINQ.
RemObjects Blogs
– In terms of improving DA LINQ, I’m happy to announce that i have just committed improved support for the LEFT OUTERÂ JOIN in the next release of the Data Abstract for .NET. We can compose Left Outer join query by using DefaultIfEmpty standard query operator. See the sample below: var query = from c in lrda.GetTable() where c.CustomerID == "PARIS" join o in lrda.GetTable() on c.CustomerID equals o.CustomerID into ords from o in ords.DefaultIfEmpty() select new {c.CustomerID, ...
Statistics
|
Visits by Source |
User Actions |




