vote up 13 vote down star
6

There are a number of migration libraries for .NET. Which one do you prefer and why?

For those of you who haven't heard of migrations. This is something that Ruby on Rails made popular. It is a way to specify your database schema and version in code, and easily "migrate" between versions of your database.

Here is an article on .NET Migration solutions http://www.flux88.com/DatabaseMigrationsForNET.aspx. I want to know what you have used and found helpful.

flag

41% accept rate
There are some answers to the same question over here: stackoverflow.com/questions/313/… – Spoike Dec 9 '08 at 7:09

6 Answers

vote up 1 vote down

I've been using my own tool (octalforty Wizardby, what a shameless plug) for over two months and have just released it to the public. Pretty nice thing.

link|flag
vote up 2 vote down

I wrote a hard to get wrong tool for doing this at http://code.google.com/p/simplescriptrunner/

I have a complementary tool which generates the upgrade scripts for you too at http://code.google.com/p/migrationscriptgenerator/

SQL Server only at the moment mind

link|flag
vote up 1 vote down

Thats a very good question. Very beneficial :) But... where I can find Machine.Migrations? I seems googled everywhere but can't find it (only find the introduction blog stuff etc..)

link|flag
Machine.Migrations doesn't seem to be released as a dll anywhere. What you can do is to go to the Machine project (github.com/machine/machine/tree/master), clone the code from their git repo and build it for yourself. – Spoike Dec 9 '08 at 7:16
vote up 8 vote down

I have used Migrator.NET and SubSonic. I believe Migrator.NET has been in development for longer and I prefer it over SubSonic.

Migrator.NET finds migrations in your assembly (project) based on an attribute, not the filename. Filename is more in line with the convention over configuration way of working, and is probably inspired by Ruby on Rails. I find attributes to be more natural for .NET.

Migrator can execute provider specific SQL queries in your migrations. It's not something you do often, and it might not even be recommended, but it can really be valuable when you need it.

The codebase for Migrator.NET seems very solid to me. They have a nice provider model that accounts for the vendor specific syntax/rules. There are also several runners available: console, MSBuild and Nant, and there's also a contributed webforms runner for ASP.NET. I usually configure the MSBuild runner as an External Tool in Visual Studio.

Edit: I have written an article explaining how to run migrations in Visual Studio.

One thing missing from Migrator.NET is configuration using web.config, but that's a minor issue, since you usually configure it once and then forget about it. But the way it's done in SubSonic makes it overall easier to switch configurations, like when you need to run a migration on the staging or live server, instead of on your local machine.

Hope that helps!

link|flag
I use Migrator.NET for all of our projects and I really like it. I did have to make some small changes to the process and code for our environment. For example we use timestamps for the revisions (multiple branches in our projects) and there wasn't support for adding indexes I think... – Greg Nov 4 at 17:31
vote up 1 vote down

-1 on RikMigrations.

I'm currently using the Subsonic Migrator, since it works well with my subsonic models.

link|flag
vote up 1 vote down

@Chris Smith "Migrations" in this case means migrating from one version of a database schema to the next.

Say your customer has version 3.7 of your application, in which the database schema is version 3.7, and they are upgrading to version 3.8.

If there are schema changes involved, then there will be a script (generated by your 'migrations' tool of choice) for helping the end user get where they need to go.

Ruby on Rails has a much-loved solution to this problem, that has been emulated in many other languages, including some .net versions.

The Castle project has a 'migrator' sub project, for example.

RikMigrations is a dot net migrations port written by Richard Mason (available at CodePlex)

CodePlex also has a project named Dot Net Migrations -- code available.

link|flag

Your Answer

Get an OpenID
or

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