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://flux88.com/2008/06/net-database-migration-tool-roundup/. I want to know what you have used and found helpful.

link|improve this question

66% accept rate
There are some answers to the same question over here: stackoverflow.com/questions/313/net-migrations-engine – Spoike Dec 9 '08 at 7:09
feedback

9 Answers

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|improve this answer
3  
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 '09 at 17:31
1  
+100 for your article on Migrator.NET with VS. – FreshCode Dec 22 '10 at 8:03
your comments are turned off and your demo project link is broken (remove leading wordpress. in link). A simpler step-by-step approach would make a more accessible article, i.e. "1.) Extract Migrator.dll to X", "2.) Edit project settings for Y to Z," etc. – FreshCode Dec 22 '10 at 8:11
1  
It seems that it's not manintained anymore. Last commit was made in march 2010. – deadbeef Jan 19 '11 at 12:44
I think Migrator.net has moved to Github - github.com/migratordotnet/Migrator.NET/commits/master. Seems to be a bit more activity on it there. – Castrohenge Aug 4 '11 at 16:08
feedback

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|improve this answer
1  
I do like it, seems like a pretty clean solution – Sam Saffron May 7 '10 at 1:29
Kudos for pulling this off and actually following through with it. All the lovely details of your DSL in particular. Absolutely brilliant, love it! – Robert Giesecke May 20 '11 at 8:47
@Robert That's nice to hear! Thanks. – Anton Gogolev May 20 '11 at 21:16
feedback

I've been using RoundhousE. It is sql based and it meets a lot of auditing concerns (we are governed by SOx where I work). Plus it versions your database based on source control (if you want it to - it can version based on whatever you want).

link|improve this answer
feedback

Here's a brand new one: https://github.com/dradovic/MigSharp

It has support for SQL Server 2005/2008/CE 4, Oracle, and Teradata. It also includes a nice validation framework that checks your migrations for potential cross-db issues and gives you hints to how to resolve them.

On top of that, it has a couple of more interesting features: multi-module support, deterministic SQL generation, etc. Read on here: https://github.com/dradovic/MigSharp/wiki/Feature-Overview

It also allows for custom SQL injection. So you can still take advantage of a specific platorm's features.

link|improve this answer
feedback

I wrote an idiotproof 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|improve this answer
"I wrote a hard to get wrong tool for doing this at..." ??? – user297691 Oct 17 '11 at 20:16
2  
"Idiotproof" - unlike my prose ;) – mcintyre321 Oct 21 '11 at 15:44
feedback

@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|improve this answer
feedback

-1 on RikMigrations.

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

link|improve this answer
feedback

I have developed a migration framework called sharp.migrations.

The thing is I'm using it in real projects so there is a lot of updates with new features coming on.

It has a nice fluent interface and support for schema and data migrations. It also supports migration groups so you can have main migrations and a different set of them for each plugin your software uses.

public class _003_Create_table_Artist : SchemaMigration {

    public override void Up() {

        Add.Table("Artist").WithColumns(
            Column.AutoIncrement("ArtistId").AsPrimaryKey(),
            Column.String("Name", 120)
        );

        Add.ForeignKey("FK_Artist_Album")
           .OnColumn("ArtistId")
           .OfTable("Album")
           .ReferencingColumn("ArtistId")
           .OfTable("Artist")
           .OnDeleteNoAction();
    }

    public override void Down() {
        Remove.ForeignKey("FK_Artist_Album").FromTable("Album");
        Remove.Table("Artist");
    }
}

Check it out at codeplex or via nuget:

install-package sharpmigrations

Cheers!

link|improve this answer
feedback

I fully agree with concepts that each developer has his own database server instance. Concepts like Migrator.NET are valueable when you have to develop your application to be used with different database platforms. In this case Migrator.NET or, generally talking, some kind of structured language for definition of database schema and its changes will be a middle layer betweeen application logic and particular database dialect.

Another approach that I am a fan of is to use the set of migration scripts. I.e. all schema changes are written only in these migration scripts which contain raw SQL commands for particular database platform. With DBTracer it is easy to initiate new or update existing database. The benefit of such approach is that you can still use advanced features for particular database platform. Compared to that, Migrator.NET at first has to support advanced features (disable trigger, for example) and then you can use it.

Concept using markup language naturally limit you because their syntax is just a wrapper around database query language. Database schema changes should be tracked by its natural (SQL) language. We should not try to develop another language syntax for that.

link|improve this answer
1  
Please add a full disclosure (hint: the link is blog.dbtracer.org/2010/01/12/… and your blog is blog.dbtracer.org) – pst Feb 10 at 16:49
feedback

Your Answer

 
or
required, but never shown

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