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
This doesn't exactly answer your question, but Google led me here based on the keywords. This is how you might query an anonymous type from a list:
var anon = model.MyType.Select(x => new { x.Item1, x.Item2});