Hello MSDN experts, I'm trialling VB 2008 express edition. My code doesn't work with a typed dataset. Code Block Sub Main() Dim ds As UKAdvDataSet = New UKAdvDataSet() Dim dload = ds.dl Dim query = _ From o In dload _ Select New With {.Stage = o.Stage} For Each o In query Console.WriteLine(o.Stage.ToString) Next Console.ReadLine() End Sub UKAdv.mdf is not in "Data Sources". UKAdv.mdf is in an SQL Express Advanced sub-folder of C:\Program Files\Microsoft SQL Server\ When I run the code there are no
Read More...