Is there an easy way to force linq to execute a join on a foreign key relationship without accessing an arbitrary member of the referenced table?
For example, if I have a Company object that references a TaxBracket table and there is a relationship and linq association set up between them I want to be able to access Company.TaxBracket after the data context has been disposed and without having to do var temp = Company.TaxBracket.randomMemberVariableToExecuteQuery
Use
DataLoadOptions.LoadWith. So, you’d say something like