I have 2 models:
public class Person { public int PersonID { get; set; } public string PersonName { get; set; } } public class Order { public int
Another way that is never talked about is Create a view in MSSQL with all the data you want to present. Then use LINQ to SQL or whatever to map it. In your controller return it to the view. Done.