3

我正在使用 FlunetMigrator.Runner.3.2.1 并看到此版本不再默认回滚所有迁移,其中一个迁移失败。它说它们是每个迁移文件!这不会增加价值。有没有办法在将其作为 .net 核心控制台应用程序运行时设置每个会话的事务。

我看到有这个链接https://fluentmigrator.github.io/articles/runners/runner-console.html但说使用我们没有使用的 Migrate.exe 文件,我们正在使用控制台。我可以在代码中将事务级别设置为会话吗?

为什么有人要运行它并且只完成一些更改,全有或全无是更好的方法

4

1 回答 1

4

我找到了答案!您在 Runner 选项中设置它,如下所示

opt.TransactionPerSession = true;

创建 IServiceProvide 的完整方法

private static IServiceProvider CreateServices(string connectionString,
    CommandLineArguments commandLineArguments)
{
    return new ServiceCollection()
        // Add common FluentMigrator services
        .AddFluentMigratorCore()
        .ConfigureRunner(rb => rb
            // Add SQL Server support to FluentMigrator
            .AddSqlServer()
            // Set the connection string
            .WithGlobalConnectionString(connectionString)
            
            // Define the assembly containing the migrations
            .ScanIn(typeof(Program).Assembly).For.Migrations().For.EmbeddedResources())
        // Enable logging to console in the FluentMigrator way
        .AddLogging(lb => lb.AddFluentMigratorConsole())
        .Configure<RunnerOptions>(opt => { 
            opt.Tags = commandLineArguments.Tags.ToArray();
            opt.TransactionPerSession = true; })
        // Build the service provider
        .BuildServiceProvider(false);
}

下面的代码是使用 IServiceProvider 的完整示例

var serviceProvider = CreateServices(connectionString, commandLineArguments);

// Put the database update into a scope to ensure
// that all resources will be disposed.
using (var scope = serviceProvider.CreateScope())
{
    try
    {
        UpdateDatabase(scope.ServiceProvider, commandLineArguments);
    }
    catch (Exception e)
    {
        Console.WriteLine("There was a problem with the migration: " + e.Message + "\n" +
                          e.StackTrace);
    }
    migrationRun = true;
}

更新数据库代码:

private static void UpdateDatabase(IServiceProvider serviceProvider, CommandLineArguments commandLineArguments)
{
    // Instantiate the runner
    var runner = serviceProvider.GetRequiredService<IMigrationRunner>();

    if (commandLineArguments.Downgrade)
    {
        runner.MigrateDown(commandLineArguments.Version != -1 ? commandLineArguments.Version : 0);
    }
    else
    {
        if (commandLineArguments.Version != -1)
        {
            runner.MigrateUp(commandLineArguments.Version);
        }
        else
        {
            runner.MigrateUp();
        }

    }
}
于 2020-02-04T09:53:46.997 回答