When I modify an entity in my model, for instance changing property names and types, moving properties around etc, I then have to manually upgrade the database so it matches the new entity model.
There's a lot of SQL-ORM's out there, Dapper, OrmLite, Simple.Data etc. How is the support for automatically upgrading between model versions (and downgrading) on these and other orm's?
During the development and beta fase I tend to change my models quite frequently and I'd like to be able to automate this process as much as possible.