Using the simple example below, what is the best way to return results from multiple tables using Linq to SQL?
Say I have two tables:
Dogs: Name, A
Just select dogs, then use dog.Breed.BreedName, this should work fine.
dog.Breed.BreedName
If you have a lot of dogs, use DataLoadOptions.LoadWith to reduce the number of db calls.