Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

I'm using NMigrations in my projects: http://nmigrations.codeplex.com/

It helps to keep the schema up to date and port model / schema updates to multiple environments.

Even if the solution exists and it comes with some ORM - how would you apply those changes to the production database? Very often there is a need to migrate existing data when making a schema change and it can be pretty tricky. I do not see any reasons on why the ORM should be responsible for that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.