I want stop my Build process through MSBuild, if there is pending migrations.

But I don't want to trigger the Migrate target while building my project.

So, How can I check only pending migrations with Migratordotnet ?
I just want to use it as a flag to stop my Build process.. !!

Thanks in advance !

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Check this other question which shows some code to allow you to check if there are pending migrations. It could be quite possible to have a target set up in MSBuild to run this code and exit from the target if it returns one or more migrations available.

Here's some basic code for a console app that pulls together the code of the other question. It simply writes a message to the console window if migrations are available or not. You'll need to expand it into what your needs are, but it should work. TestMigration1 should be replaced by one of your migration classes in the assembly where your migrations are. You'll obviously need to make a reference to that project from your console app.

internal class Program {
    private static void Main(string[] args) {
        Assembly asm = Assembly.GetAssembly(typeof (TestMigration1));
        const string myConnectionString =
            "Data Source=myServerAddress;Initial Catalog=myDataBase;User Id=myUsername;Password=myPassword;";
        ITransformationProvider provider = ProviderFactory.Create("SqlServer", myConnectionString);
        var loader = new MigrationLoader(provider, asm, false);
        List<long> availableMigrations = loader.GetAvailableMigrations();

        Console.WriteLine(availableMigrations.Count > 0 ? "Migrations available" : "No migrations");
    }
}
link|improve this answer
I want to do it externally from MSBuild, anyways can you suggest some sample code ? – Yugal Jindle Aug 7 '11 at 3:39
Using the code from that other question, you can just write a small console utility to do it outside of MSBuild and execute it whichever way you'd like. – Sumo Aug 8 '11 at 1:41
The last line of that code returns the number of migrations that are pending to bring the db to the current version. If zero is returned, there are no migrations to be done. – Sumo Aug 8 '11 at 1:51
Hm.. This is not exactly what I was looking for, but if this solved my issue - I will revert back. – Yugal Jindle Aug 9 '11 at 8:04
I think you need to think through your question then and explain what your build process exactly is. If your process is actually just building a project or a solution, then no, it's not going to work to stop the build process as you need to finish the build before you check for pending migrations. – Sumo Aug 9 '11 at 10:05
show 2 more comments
feedback

I think that it is not supported by Migratordotnet !

They only provide 1 Target for MSBuild, that aims at executing the migrations.. so there is no other way in which you could interact with it to check the migrations.

link|improve this answer
Tell me if there is any other way... ? – Yugal Jindle Aug 2 '11 at 4:34
feedback

Your Answer

 
or
required, but never shown

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