C
chris.kennedy
I have some linqtosql
Dim col = (From cd In ctx.TBLContactData _
Join cc In ctx.TBLCompanyContacts On cc.CompanyContactID
Equals
cd.CompanyContactID _
Select test = cc.CompanyContactID).Skip(0).Take(10)
When I loop through the collection
For Each colobj In col
'I want be able to write col.test but this does work
It's important that I can reference cc.CompanyContactID as an alias.
Dim col = (From cd In ctx.TBLContactData _
Join cc In ctx.TBLCompanyContacts On cc.CompanyContactID
Equals
cd.CompanyContactID _
Select test = cc.CompanyContactID).Skip(0).Take(10)
When I loop through the collection
For Each colobj In col
'I want be able to write col.test but this does work
It's important that I can reference cc.CompanyContactID as an alias.