Hello,
I'm just testing LLBLGen Pro 2.6 using the trial version.
This works fine (Northwind database on SQL2005 Developer):
Dim q = From emp In .Employees _
Join ord In .Orders On ord.EmployeeId Equals emp.EmployeeId _
Select New With {emp.EmployeeId, emp.FirstName, ord.CustomerId}
This doesn't work:
Dim Q = From C In .Customers _
Join o In .Orders On C.CustomerId Equals o.CustomerId Into oc _
Where C.Country = "France" _
From x In oc.DefaultIfEmpty _
Where x.OrderId = Nothing _
Select C
VB.NET 2008 SP1 reports a compile-time error on the "Into" keyword: End of statement expected.
What am I doing wrong?
Kind regards.