Are there any tutorials for FluentMigrator? Some "Getting Started..." tutorial would be just awesome. All I was able to find was FluentMigrator.Tests (unit tests), inside FluentMigrator source, which are not as helpful as "Getting Started..." would be.
|
|
|||
|
|
|
Since fluent migrator is a fork of Migrator .NET you might find the getting started for Migrator .net helpful |
|||||
|
|
I cribbed this from their source code...
I use code similar to this in a custom action class in WiX. Target is the name of the assembly you want to execute. In your case, it would be whatever assembly is produced by your migration project. There are other options on the IRunnerContext you can set. Like Namespace, PreviewOnly, etc. Unfortunately, it isn't documented so you'll have to dig into the code to figure it out. The project that generates the Migrate.exe assembly is where I found most of this. |
|||||
|
|
One of the original authors of FluentMigrator just wrote this "Getting started" blogpost. |
|||
|
|
|
You can find some decent tutorials on my blog http://nexussharp.wordpress.com/2011/12/09/fluentmigrator-database-migrations-done-right/ |
|||||
|
|
Hey, I realize this is an old question. Wish I saw it earlier. Feel free to join our google group and ask questions. Improving our sample code and docs is something we'd like to do; we're just all busy. |
|||
|
|
|
Here is a quick tutorial that includes using NAnt http://bob-the-janitor.blogspot.com/2011/07/using-fluentmigrator-with-nant.html |
|||
|
|
|
Here's an example of doing it in C# (rather than MSBuild, Nant or the console runner), based on scraps on Stackoverflow:
You'll have troubles doing it in C# with |
||||
|
|
|
Nexus has the best tutorials I have found so far: http://nexussharp.wordpress.com/2011/12/09/fluentmigrator-database-migrations-done-right/ http://nexussharp.wordpress.com/2011/12/18/fluentmigrator-part-ii/ |
|||
|
|
|
This tutorial was useful for me to figure out how to build and use FluentMigrator with MSBuild, if you are using visual studios. Also comes with the an example of backing up and restoring a database. |
||||
|
|