From 7d5d33a1b4d00a1c298463ffcc57ef63ed1864b3 Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Fri, 28 Jun 2019 09:07:15 +0300 Subject: [PATCH] mongodb namespaces & projects renamed --- ...vcTemplateSwitchEntityFrameworkCoreToMongoDbStep.cs | 10 +++++----- .../Volo/Abp/MongoDB/AbpMongoDbTestModule.cs | 2 +- .../Volo/Abp/TestApp/MongoDb/CityRepository.cs | 2 +- .../Volo/Abp/TestApp/MongoDb/ITestAppMongoDbContext.cs | 2 +- .../Volo/Abp/TestApp/MongoDb/TestAppMongoDbContext.cs | 2 +- modules/blogging/Volo.Blogging.sln | 4 ++-- .../MongoDb/BloggingTestAppMongoDbModule.cs | 2 +- .../app/Volo.BloggingTestApp/BloggingTestAppModule.cs | 2 +- .../Volo.BloggingTestApp/Volo.BloggingTestApp.csproj | 2 +- .../AbpPermissionManagementMongoDbTestModule.cs | 6 ++---- .../MongoDb/PermissionGrantRepository_Tests.cs | 2 +- .../AbpTenantManagementMongoDbContextExtensions.cs | 2 +- .../MongoDb/AbpTenantManagementMongoDbModule.cs | 2 +- .../MongoDb/ITenantManagementMongoDbContext.cs | 2 +- .../TenantManagement/MongoDb/MongoTenantRepository.cs | 2 +- .../MongoDb/TenantManagementMongoDbContext.cs | 2 +- ...tManagementMongoModelBuilderConfigurationOptions.cs | 2 +- .../MongoDb/AbpTenantManagementMongoDbTestModule.cs | 2 +- .../TenantManagement/MongoDb/TenantRepository_Tests.cs | 2 +- .../MongoDb/MyProjectNameMongoDbContext.cs | 2 +- .../MongoDb/MyProjectNameMongoDbModule.cs | 4 ++-- .../MongoDb/MyProjectNameMongoDbTestBase.cs | 2 +- .../MongoDb/MyProjectNameMongoDbTestModule.cs | 2 +- .../MongoDb/Samples/SampleRepositoryTests.cs | 2 +- 24 files changed, 31 insertions(+), 33 deletions(-) diff --git a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/Mvc/MvcTemplateSwitchEntityFrameworkCoreToMongoDbStep.cs b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/Mvc/MvcTemplateSwitchEntityFrameworkCoreToMongoDbStep.cs index fbcee25c71..767b82fff3 100644 --- a/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/Mvc/MvcTemplateSwitchEntityFrameworkCoreToMongoDbStep.cs +++ b/framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Templates/Mvc/MvcTemplateSwitchEntityFrameworkCoreToMongoDbStep.cs @@ -20,7 +20,7 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.Mvc context, "/src/MyCompanyName.MyProjectName.Web/MyProjectNameWebModule.cs", "MyCompanyName.MyProjectName.EntityFrameworkCore", - "MyCompanyName.MyProjectName.MongoDb", + "MyCompanyName.MyProjectName.MongoDB", "MyProjectNameEntityFrameworkCoreDbMigrationsModule", "MyProjectNameMongoDbModule" ); @@ -43,7 +43,7 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.Mvc context, "/src/MyCompanyName.MyProjectName.IdentityServer/MyProjectNameIdentityServerModule.cs", "MyCompanyName.MyProjectName.EntityFrameworkCore", - "MyCompanyName.MyProjectName.MongoDb", + "MyCompanyName.MyProjectName.MongoDB", "MyProjectNameEntityFrameworkCoreDbMigrationsModule", "MyProjectNameMongoDbModule" ); @@ -66,7 +66,7 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.Mvc context, "/src/MyCompanyName.MyProjectName.HttpApi.Host/MyProjectNameHttpApiHostModule.cs", "MyCompanyName.MyProjectName.EntityFrameworkCore", - "MyCompanyName.MyProjectName.MongoDb", + "MyCompanyName.MyProjectName.MongoDB", "MyProjectNameEntityFrameworkCoreDbMigrationsModule", "MyProjectNameMongoDbModule" ); @@ -89,7 +89,7 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.Mvc context, "/src/MyCompanyName.MyProjectName.DbMigrator/MyProjectNameDbMigratorModule.cs", "MyCompanyName.MyProjectName.EntityFrameworkCore", - "MyCompanyName.MyProjectName.MongoDb", + "MyCompanyName.MyProjectName.MongoDB", "MyProjectNameEntityFrameworkCoreDbMigrationsModule", "MyProjectNameMongoDbModule" ); @@ -112,7 +112,7 @@ namespace Volo.Abp.Cli.ProjectBuilding.Templates.Mvc context, "/test/MyCompanyName.MyProjectName.Domain.Tests/MyProjectNameDomainTestModule.cs", "MyCompanyName.MyProjectName.EntityFrameworkCore", - "MyCompanyName.MyProjectName.MongoDb", + "MyCompanyName.MyProjectName.MongoDB", "MyProjectNameEntityFrameworkCoreTestModule", "MyProjectNameMongoDbTestModule" ); diff --git a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/MongoDB/AbpMongoDbTestModule.cs b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/MongoDB/AbpMongoDbTestModule.cs index 7e50a930df..e2c9e5facc 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/MongoDB/AbpMongoDbTestModule.cs +++ b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/MongoDB/AbpMongoDbTestModule.cs @@ -4,7 +4,7 @@ using Volo.Abp.Data; using Volo.Abp.Modularity; using Volo.Abp.TestApp; using Volo.Abp.TestApp.Domain; -using Volo.Abp.TestApp.MongoDb; +using Volo.Abp.TestApp.MongoDB; namespace Volo.Abp.MongoDB { diff --git a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/CityRepository.cs b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/CityRepository.cs index b122cad86e..bb31883010 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/CityRepository.cs +++ b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/CityRepository.cs @@ -7,7 +7,7 @@ using Volo.Abp.Domain.Repositories.MongoDB; using Volo.Abp.MongoDB; using Volo.Abp.TestApp.Domain; -namespace Volo.Abp.TestApp.MongoDb +namespace Volo.Abp.TestApp.MongoDB { public class CityRepository : MongoDbRepository, ICityRepository { diff --git a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/ITestAppMongoDbContext.cs b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/ITestAppMongoDbContext.cs index 88682918cb..55a1d56646 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/ITestAppMongoDbContext.cs +++ b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/ITestAppMongoDbContext.cs @@ -3,7 +3,7 @@ using Volo.Abp.Data; using Volo.Abp.MongoDB; using Volo.Abp.TestApp.Domain; -namespace Volo.Abp.TestApp.MongoDb +namespace Volo.Abp.TestApp.MongoDB { [ConnectionStringName("TestApp")] public interface ITestAppMongoDbContext : IAbpMongoDbContext diff --git a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/TestAppMongoDbContext.cs b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/TestAppMongoDbContext.cs index 8f18aec5ed..fd7562f6df 100644 --- a/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/TestAppMongoDbContext.cs +++ b/framework/test/Volo.Abp.MongoDB.Tests/Volo/Abp/TestApp/MongoDb/TestAppMongoDbContext.cs @@ -3,7 +3,7 @@ using Volo.Abp.Data; using Volo.Abp.MongoDB; using Volo.Abp.TestApp.Domain; -namespace Volo.Abp.TestApp.MongoDb +namespace Volo.Abp.TestApp.MongoDB { [ConnectionStringName("TestApp")] public class TestAppMongoDbContext : AbpMongoDbContext, ITestAppMongoDbContext diff --git a/modules/blogging/Volo.Blogging.sln b/modules/blogging/Volo.Blogging.sln index 1c4ac401bb..8a22f1d787 100644 --- a/modules/blogging/Volo.Blogging.sln +++ b/modules/blogging/Volo.Blogging.sln @@ -37,11 +37,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Blogging.Application.T EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Blogging.MongoDB", "src\Volo.Blogging.MongoDB\Volo.Blogging.MongoDB.csproj", "{98C2D36A-F874-405D-8565-9CE59438E879}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.BloggingTestApp.MongoDb", "app\Volo.BloggingTestApp.MongoDb\Volo.BloggingTestApp.MongoDb.csproj", "{4C818374-2DE8-422F-8585-975E8366DB26}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.BloggingTestApp.MongoDB", "app\Volo.BloggingTestApp.MongoDb\Volo.BloggingTestApp.MongoDB.csproj", "{4C818374-2DE8-422F-8585-975E8366DB26}" EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Blogging.MongoDB.Tests", "test\Volo.Blogging.MongoDB.Tests\Volo.Blogging.MongoDB.Tests.csproj", "{0A29F64C-11F1-40B6-8E6D-91E86823775E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Volo.Blogging.Domain.Tests", "test\Volo.Blogging.Domain.Tests\Volo.Blogging.Domain.Tests.csproj", "{B6D7EF20-9921-490A-AA95-47E3E174DC9B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Volo.Blogging.Domain.Tests", "test\Volo.Blogging.Domain.Tests\Volo.Blogging.Domain.Tests.csproj", "{B6D7EF20-9921-490A-AA95-47E3E174DC9B}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/modules/blogging/app/Volo.BloggingTestApp.MongoDb/Volo/BloggingTestApp/MongoDb/BloggingTestAppMongoDbModule.cs b/modules/blogging/app/Volo.BloggingTestApp.MongoDb/Volo/BloggingTestApp/MongoDb/BloggingTestAppMongoDbModule.cs index a03c4eb14b..b86d5fdec5 100644 --- a/modules/blogging/app/Volo.BloggingTestApp.MongoDb/Volo/BloggingTestApp/MongoDb/BloggingTestAppMongoDbModule.cs +++ b/modules/blogging/app/Volo.BloggingTestApp.MongoDb/Volo/BloggingTestApp/MongoDb/BloggingTestAppMongoDbModule.cs @@ -7,7 +7,7 @@ using Volo.Abp.PermissionManagement.MongoDB; using Volo.Abp.SettingManagement.MongoDB; using Volo.Blogging.MongoDB; -namespace Volo.BloggingTestApp.MongoDb +namespace Volo.BloggingTestApp.MongoDB { [DependsOn( typeof(AbpIdentityMongoDbModule), diff --git a/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs b/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs index c8d8cc2642..c42ec7eedc 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs +++ b/modules/blogging/app/Volo.BloggingTestApp/BloggingTestAppModule.cs @@ -33,7 +33,7 @@ using Volo.Abp.VirtualFileSystem; using Volo.Blogging; using Volo.Blogging.Files; using Volo.BloggingTestApp.EntityFrameworkCore; -using Volo.BloggingTestApp.MongoDb; +using Volo.BloggingTestApp.MongoDB; namespace Volo.BloggingTestApp { diff --git a/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj b/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj index 8eaef4b2b6..f422db6d4f 100644 --- a/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj +++ b/modules/blogging/app/Volo.BloggingTestApp/Volo.BloggingTestApp.csproj @@ -25,7 +25,6 @@ - @@ -35,6 +34,7 @@ + diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/AbpPermissionManagementMongoDbTestModule.cs b/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/AbpPermissionManagementMongoDbTestModule.cs index 9811911eed..fdbf5dacd8 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/AbpPermissionManagementMongoDbTestModule.cs +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/AbpPermissionManagementMongoDbTestModule.cs @@ -1,10 +1,8 @@ -using Microsoft.Extensions.DependencyInjection; -using Mongo2Go; +using Mongo2Go; using Volo.Abp.Data; using Volo.Abp.Modularity; -using Volo.Abp.PermissionManagement.MongoDB; -namespace Volo.Abp.PermissionManagement.MongoDb +namespace Volo.Abp.PermissionManagement.MongoDB { [DependsOn( typeof(AbpPermissionManagementMongoDbModule), diff --git a/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/PermissionGrantRepository_Tests.cs b/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/PermissionGrantRepository_Tests.cs index 53fd2d7e35..98db0640c5 100644 --- a/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/PermissionGrantRepository_Tests.cs +++ b/modules/permission-management/test/Volo.Abp.PermissionManagement.MongoDB.Tests/Volo/Abp/PermissionManagement/MongoDb/PermissionGrantRepository_Tests.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.PermissionManagement.MongoDb +namespace Volo.Abp.PermissionManagement.MongoDB { public class PermissionGrantRepository_Tests : PermissionGrantRepository_Tests { diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbContextExtensions.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbContextExtensions.cs index 3b2a8f2a2a..39dbed6d57 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbContextExtensions.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbContextExtensions.cs @@ -1,7 +1,7 @@ using System; using Volo.Abp.MongoDB; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { public static class AbpTenantManagementMongoDbContextExtensions { diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbModule.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbModule.cs index 4d0ca1621f..3faf7b41b2 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbModule.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbModule.cs @@ -2,7 +2,7 @@ using Volo.Abp.Modularity; using Volo.Abp.MongoDB; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { [DependsOn( typeof(AbpTenantManagementDomainModule), diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/ITenantManagementMongoDbContext.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/ITenantManagementMongoDbContext.cs index 17ec0626cf..06bdd814da 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/ITenantManagementMongoDbContext.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/ITenantManagementMongoDbContext.cs @@ -2,7 +2,7 @@ using Volo.Abp.Data; using Volo.Abp.MongoDB; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { [ConnectionStringName(AbpTenantManagementConsts.ConnectionStringName)] public interface ITenantManagementMongoDbContext : IAbpMongoDbContext diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/MongoTenantRepository.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/MongoTenantRepository.cs index 2b30dd5a26..0ee8c54744 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/MongoTenantRepository.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/MongoTenantRepository.cs @@ -9,7 +9,7 @@ using MongoDB.Driver; using Volo.Abp.Domain.Repositories.MongoDB; using Volo.Abp.MongoDB; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { public class MongoTenantRepository : MongoDbRepository, ITenantRepository { diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoDbContext.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoDbContext.cs index eda8e627a3..adef6a0c2d 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoDbContext.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoDbContext.cs @@ -2,7 +2,7 @@ using Volo.Abp.Data; using Volo.Abp.MongoDB; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { [ConnectionStringName(AbpTenantManagementConsts.ConnectionStringName)] public class TenantManagementMongoDbContext : AbpMongoDbContext, ITenantManagementMongoDbContext diff --git a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoModelBuilderConfigurationOptions.cs b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoModelBuilderConfigurationOptions.cs index 646a58bfb0..5f2814460d 100644 --- a/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoModelBuilderConfigurationOptions.cs +++ b/modules/tenant-management/src/Volo.Abp.TenantManagement.MongoDB/Volo/Abp/TenantManagement/MongoDb/TenantManagementMongoModelBuilderConfigurationOptions.cs @@ -1,7 +1,7 @@ using JetBrains.Annotations; using Volo.Abp.MongoDB; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { public class TenantManagementMongoModelBuilderConfigurationOptions : MongoModelBuilderConfigurationOptions { diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbTestModule.cs b/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbTestModule.cs index b390abc613..8ed1b829db 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbTestModule.cs +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/AbpTenantManagementMongoDbTestModule.cs @@ -3,7 +3,7 @@ using Mongo2Go; using Volo.Abp.Data; using Volo.Abp.Modularity; -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { [DependsOn( typeof(AbpTenantManagementMongoDbModule), diff --git a/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/TenantRepository_Tests.cs b/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/TenantRepository_Tests.cs index 7b42e3bd32..b1ae97b021 100644 --- a/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/TenantRepository_Tests.cs +++ b/modules/tenant-management/test/Volo.Abp.TenantManagement.MongoDB.Tests/Volo/Abp/TenantManagement/MongoDb/TenantRepository_Tests.cs @@ -1,4 +1,4 @@ -namespace Volo.Abp.TenantManagement.MongoDb +namespace Volo.Abp.TenantManagement.MongoDB { public class TenantRepository_Tests : TenantRepository_Tests { diff --git a/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbContext.cs b/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbContext.cs index c628be1923..b2f8334f92 100644 --- a/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbContext.cs +++ b/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbContext.cs @@ -3,7 +3,7 @@ using MyCompanyName.MyProjectName.Users; using Volo.Abp.Data; using Volo.Abp.MongoDB; -namespace MyCompanyName.MyProjectName.MongoDb +namespace MyCompanyName.MyProjectName.MongoDB { [ConnectionStringName("Default")] public class MyProjectNameMongoDbContext : AbpMongoDbContext diff --git a/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbModule.cs b/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbModule.cs index 81cb2c33e3..4b450dd3e0 100644 --- a/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbModule.cs +++ b/templates/mvc/src/MyCompanyName.MyProjectName.MongoDB/MongoDb/MyProjectNameMongoDbModule.cs @@ -7,9 +7,9 @@ using Volo.Abp.IdentityServer.MongoDB; using Volo.Abp.Modularity; using Volo.Abp.PermissionManagement.MongoDB; using Volo.Abp.SettingManagement.MongoDB; -using Volo.Abp.TenantManagement.MongoDb; +using Volo.Abp.TenantManagement.MongoDB; -namespace MyCompanyName.MyProjectName.MongoDb +namespace MyCompanyName.MyProjectName.MongoDB { [DependsOn( typeof(MyProjectNameDomainModule), diff --git a/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestBase.cs b/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestBase.cs index 4a9c9f90e0..c7fc5f9eea 100644 --- a/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestBase.cs +++ b/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestBase.cs @@ -1,4 +1,4 @@ -namespace MyCompanyName.MyProjectName.MongoDb +namespace MyCompanyName.MyProjectName.MongoDB { public abstract class MyProjectNameMongoDbTestBase : MyProjectNameTestBase { diff --git a/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestModule.cs b/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestModule.cs index 1a7e9c36fb..9da609fd4e 100644 --- a/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestModule.cs +++ b/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/MyProjectNameMongoDbTestModule.cs @@ -3,7 +3,7 @@ using Volo.Abp; using Volo.Abp.Data; using Volo.Abp.Modularity; -namespace MyCompanyName.MyProjectName.MongoDb +namespace MyCompanyName.MyProjectName.MongoDB { [DependsOn( typeof(MyProjectNameTestBaseModule), diff --git a/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/Samples/SampleRepositoryTests.cs b/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/Samples/SampleRepositoryTests.cs index 721bfee6fd..27095ec117 100644 --- a/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/Samples/SampleRepositoryTests.cs +++ b/templates/mvc/test/MyCompanyName.MyProjectName.MongoDB.Tests/MongoDb/Samples/SampleRepositoryTests.cs @@ -6,7 +6,7 @@ using Shouldly; using Volo.Abp.Domain.Repositories; using Xunit; -namespace MyCompanyName.MyProjectName.MongoDb.Samples +namespace MyCompanyName.MyProjectName.MongoDB.Samples { /* This is just an example test class. * Normally, you don't test ABP framework code