Binding Entity Framework Collections Simply Using ASP.NET MVC
- by jpcmorton
To begin with: Using Entity Framework v4.0. ASP.NET MVC 2.0. Visual Studio 2010.
I have a model that consists simply of an order & order items. What I want to do is simply bind that model without too much hassle where possible (avoiding type converters, etc).
Simply the model looks like this:
public class Order {
public int ID { get;…