Entity framework: Need a easy going, clean database migration solution.
- by user469652
I'm using entity framework model first development, and I need to do database migration often,
The EF database generation power pack doesn't help a lot, because that data migration never worked here.
The database migration here I mean, change the model, and then I can update the existing database from the model, but creating a new one.
Is there any free of charge tool here invented here yet? Or would this going to be a new feature of next EF release?
PS: I love django's ORM.