I have come to the conclusion that the very nifty ASP.NET Dynamic Data framework would be even more nifty if one only had to implement model changes from one side, model or DB. Right now, if I add a column or table, I must refresh my EF model, and then the scaffolding does the dirty work.
I would much prefer a mechanism where I can update my EF model, and have changes pushed back to the DB, or update my DB and programmatically update my EF model. Prototyping on site, without Visual Studio, would be amazing. Just add a column and hit the site.
Are there any projects that deal with this? If not, where should I start looking to learn about either or both of the approaches I mention?