I notice a lot of the examples for ASP.NET use Linq2Sql as the datasource.
Are there any examples out there which show how do use model binding with a non-Linq2Sql datasource, ie a dataset, or (as in my case) a generic list/collection of items based on a custom business object? ie
public class WebsiteList : List
{
public WebsiteList()
{
}
}
ASP.NET MVC is great, especially for it's "use whatever you want" approach. It's just a shame that so many examples are using Linq2Sql.