I have 2 models:
public class Person { public int PersonID { get; set; } public string PersonName { get; set; } } public class Order { public int
You can use the presentation pattern http://martinfowler.com/eaaDev/PresentationModel.html
This presentation "View" model can contain both Person and Order, this new class can be the model your view references.