I want to create a web app very quickly, but, without worrying about my data model/arch right now (down the road it will be LINQ to SQL). I have wireframes and I want to build a complete UI (as much as possible) that allows the user to edit data in RadGrids etc and have that data persist for the session (or longer if I have to). What would be ideal is to have my Grids to AllowAutomatic (updates, deletes, inserts).
The approach I took was to create a "TestDataSource" directory with a bunch of XML, but allowing automatic CRUD requires more effort than I hoped. What would be cool is the ability to have in the code behind a generic list of some sort in which automatic CRUD operates on in memory with little to no code. Are there any sample projects that do this? I've bounced all of the documentation and my brain is a bit fried right now.
If this doesn't exist, I think this would be a great project for Telerik as it would allow devs who want to quickly prototype entire web apps iteratively and attach a data architecture later down the road. I want my users to truly experience the goodness of these controls without having to wireup a real data structure, because we all know thats the most pain when it comes to change requests.