Still a bit new to Linq. This is driving me nuts. I want to alias a column, the alias should have a space.
This works fine:
Dim q = From tmp in t.Table Select iDate = tmp.iDate
But, I want this to work
Dim q = From tmp in t.Table Select "Some Alias With Space" = tmp.iDate
Any ideas?