asp.net mvc model database change -
i've used mvcscaffolding , mvc3 generate tables in sql2008 database. data has been added.
i've changed single model , wish alter underlying table.
- is there way auto-update single table keep in sync model?
- after adding new model how can database table created without recreating database
you're looking rails' migrations. there couple .net migrations providers floating around, basic setup you've described doesn't support alterations schema without recreating database (at least in experience).
Comments
Post a Comment