From eff1a08edd993b4acfbe67c489c35dab7d50b2d9 Mon Sep 17 00:00:00 2001 From: maliming Date: Tue, 10 May 2022 13:45:08 +0800 Subject: [PATCH] =?UTF-8?q?Rename=20`=C4=B1n=C4=B1tial`=20to=20`initial`.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Cli/Commands/CreateMigrationAndRunMigratorCommand.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/CreateMigrationAndRunMigratorCommand.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/CreateMigrationAndRunMigratorCommand.cs index 38491551a8..05abd4940c 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/CreateMigrationAndRunMigratorCommand.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/CreateMigrationAndRunMigratorCommand.cs @@ -13,16 +13,16 @@ namespace Volo.Abp.Cli.Commands; public class CreateMigrationAndRunMigratorCommand : IConsoleCommand, ITransientDependency { - private readonly InitialMigrationCreator _ınıtialMigrationCreator; + private readonly InitialMigrationCreator _initialMigrationCreator; public const string Name = "create-migration-and-run-migrator"; public ICmdHelper CmdHelper { get; } public DotnetEfToolManager DotnetEfToolManager { get; } public ILogger Logger { get; set; } - public CreateMigrationAndRunMigratorCommand(ICmdHelper cmdHelper, InitialMigrationCreator ınıtialMigrationCreator, DotnetEfToolManager dotnetEfToolManager) + public CreateMigrationAndRunMigratorCommand(ICmdHelper cmdHelper, InitialMigrationCreator initialMigrationCreator, DotnetEfToolManager dotnetEfToolManager) { - _ınıtialMigrationCreator = ınıtialMigrationCreator; + _initialMigrationCreator = initialMigrationCreator; CmdHelper = cmdHelper; DotnetEfToolManager = dotnetEfToolManager; Logger = NullLogger.Instance; @@ -46,7 +46,7 @@ public class CreateMigrationAndRunMigratorCommand : IConsoleCommand, ITransientD await DotnetEfToolManager.BeSureInstalledAsync(); - var migrationsCreatedSuccessfully = await _ınıtialMigrationCreator.CreateAsync(commandLineArgs.Target, !nolayers); + var migrationsCreatedSuccessfully = await _initialMigrationCreator.CreateAsync(commandLineArgs.Target, !nolayers); if (migrationsCreatedSuccessfully) {