I have some views that I'd like to relate together in my Linq2Sql DBML file.
I've right clicked, selected "Add association" and manually created the associations from children to parents, for example:
Customer.TypeId -> CustomerTypes.Id
But I cannot do this in my code:
from c in Customers select c.Type.Name
Any clues? If the relationships existed in the database, which they don't and can't, then I would be able to do this.