Gilles, does the new listClass attribute on <select> statements allow properties that previously had to be IList to become strongly typed collections instead? For example:
// without listClass
public class Order
{
private int _id;
private Account _account;
private string _postalCode;
private IList _lineItems;
}
// with listClass
public class Order
{
private int _id;
private Account _account;
private string _postalCode;
private LineItemCollection _lineItems;
}
