Jasper and LINQ in CTP Samples
I'm looking at the VIsual Basic query samples and curious about the compile time checking in the LINQ samples. This may just be the mystery of Dynamic Languages...
In this code:
Dim customers As Object = From c In CType(context.Customers, IQuery) _
Where c.Country = "USA" _
Order By c.CompanyName _
Select c
context.Customers is not strongly typed and we are doing late-binding. The code won't know what Customers are until the app is actually run. So we don't get Customers via intellisense (ooh that's not fun - I'm too spoiled) but why is it that the compiler is not complaining about context.Customers or c.Country or c.CompanyName? I thought strict might be relative to "option strict" but even if I set that to true, the compiler is happy.
Thanks

