├── .gitattributes ├── .gitignore ├── FHCollection.ApiCore.sln ├── FHCollection.ApiCore.sln.DotSettings ├── common.props ├── host └── FHCollection.ApiCore.HttpApi.Host │ ├── ApiCoreHttpApiHostModule.cs │ ├── Controllers │ └── HomeController.cs │ ├── Dockerfile │ ├── EntityFrameworkCore │ ├── MyProjectHttpApiHostMigrationsDbContext.cs │ └── MyProjectHttpApiHostMigrationsDbContextFactory.cs │ ├── FHCollection.ApiCore.HttpApi.Host.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.json │ └── yarn.lock └── src ├── FHCollection.ApiCore.Application.Contracts ├── ApiCoreApplicationContractsModule.cs ├── Authorization │ ├── ApiCorePermissionDefinitionProvider.cs │ └── ApiCorePermissions.cs ├── Books │ ├── BookDto.cs │ ├── CreateUpdateBookDto.cs │ └── IBookAppService.cs ├── FHCollection.ApiCore.Application.Contracts.csproj ├── Localization │ └── ApiCore │ │ └── ApplicationContracts │ │ ├── cs.json │ │ ├── en.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ └── vi.json └── Samples │ ├── ISampleAppService.cs │ └── SampleDto.cs ├── FHCollection.ApiCore.Application ├── ApiCoreAppService.cs ├── ApiCoreApplicationAutoMapperProfile.cs ├── ApiCoreApplicationModule.cs ├── Books │ └── BookAppService.cs ├── Data │ ├── ApiCoreDbMigrationService.cs │ ├── IApiCoreDbSchemaMigrator.cs │ └── NullApiCoreDbSchemaMigrator.cs ├── FHCollection.ApiCore.Application.csproj └── Samples │ └── SampleAppService.cs ├── FHCollection.ApiCore.DbMigrator ├── ApiCoreDbMigratorModule.cs ├── FHCollection.ApiCore.DbMigrator.csproj ├── Program.cs └── appsettings.json ├── FHCollection.ApiCore.Domain.Shared ├── ApiCoreDomainSharedModule.cs ├── ApiCoreErrorCodes.cs ├── Books │ └── BookType.cs ├── FHCollection.ApiCore.Domain.Shared.csproj └── Localization │ ├── ApiCore │ └── DomainShared │ │ ├── cs.json │ │ ├── en.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ └── vi.json │ └── ApiCoreResource.cs ├── FHCollection.ApiCore.Domain ├── ApiCoreConsts.cs ├── ApiCoreDomainModule.cs ├── Books │ └── Book.cs ├── FHCollection.ApiCore.Domain.csproj └── Settings │ ├── ApiCoreSettingDefinitionProvider.cs │ └── ApiCoreSettings.cs ├── FHCollection.ApiCore.EntityFrameworkCore.DbMigrations ├── EntityFrameworkCore │ ├── ApiCoreEntityFrameworkCoreDbMigrationsModule.cs │ ├── ApiCoreMigrationsDbContext.cs │ ├── ApiCoreMigrationsDbContextFactory.cs │ └── EntityFrameworkCoreApiCoreDbSchemaMigrator.cs ├── FHCollection.ApiCore.EntityFrameworkCore.DbMigrations.csproj └── Migrations │ ├── 20190724081757_init.Designer.cs │ ├── 20190724081757_init.cs │ └── ApiCoreMigrationsDbContextModelSnapshot.cs ├── FHCollection.ApiCore.EntityFrameworkCore ├── EntityFrameworkCore │ ├── ApiCoreDbContext.cs │ ├── ApiCoreDbContextModelCreatingExtensions.cs │ ├── ApiCoreEntityFrameworkCoreModule.cs │ ├── ApiCoreModelBuilderConfigurationOptions.cs │ └── IApiCoreDbContext.cs └── FHCollection.ApiCore.EntityFrameworkCore.csproj ├── FHCollection.ApiCore.HttpApi.Client ├── ApiCoreHttpApiClientModule.cs └── FHCollection.ApiCore.HttpApi.Client.csproj ├── FHCollection.ApiCore.HttpApi ├── ApiCoreController.cs ├── ApiCoreHttpApiModule.cs ├── FHCollection.ApiCore.HttpApi.csproj └── Samples │ └── SampleController.cs └── FHCollection.ApiCore.MongoDB ├── FHCollection.ApiCore.MongoDB.csproj └── MongoDB ├── ApiCoreMongoDbContext.cs ├── ApiCoreMongoDbContextExtensions.cs ├── ApiCoreMongoDbModule.cs ├── ApiCoreMongoModelBuilderConfigurationOptions.cs └── IApiCoreMongoDbContext.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/.gitignore -------------------------------------------------------------------------------- /FHCollection.ApiCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/FHCollection.ApiCore.sln -------------------------------------------------------------------------------- /FHCollection.ApiCore.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/FHCollection.ApiCore.sln.DotSettings -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/common.props -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/ApiCoreHttpApiHostModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/ApiCoreHttpApiHostModule.cs -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/Controllers/HomeController.cs -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/Dockerfile -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/EntityFrameworkCore/MyProjectHttpApiHostMigrationsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/EntityFrameworkCore/MyProjectHttpApiHostMigrationsDbContext.cs -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/EntityFrameworkCore/MyProjectHttpApiHostMigrationsDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/EntityFrameworkCore/MyProjectHttpApiHostMigrationsDbContextFactory.cs -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/FHCollection.ApiCore.HttpApi.Host.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/FHCollection.ApiCore.HttpApi.Host.csproj -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/Program.cs -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/Properties/launchSettings.json -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/Startup.cs -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/appsettings.json -------------------------------------------------------------------------------- /host/FHCollection.ApiCore.HttpApi.Host/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/host/FHCollection.ApiCore.HttpApi.Host/yarn.lock -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/ApiCoreApplicationContractsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/ApiCoreApplicationContractsModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Authorization/ApiCorePermissionDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Authorization/ApiCorePermissionDefinitionProvider.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Authorization/ApiCorePermissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Authorization/ApiCorePermissions.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Books/BookDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Books/BookDto.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Books/CreateUpdateBookDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Books/CreateUpdateBookDto.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Books/IBookAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Books/IBookAppService.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/FHCollection.ApiCore.Application.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/FHCollection.ApiCore.Application.Contracts.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/cs.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/en.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/pl.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/pt-BR.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Localization/ApiCore/ApplicationContracts/vi.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Samples/ISampleAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Samples/ISampleAppService.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application.Contracts/Samples/SampleDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application.Contracts/Samples/SampleDto.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/ApiCoreAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/ApiCoreAppService.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/ApiCoreApplicationAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/ApiCoreApplicationAutoMapperProfile.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/ApiCoreApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/ApiCoreApplicationModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/Books/BookAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/Books/BookAppService.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/Data/ApiCoreDbMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/Data/ApiCoreDbMigrationService.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/Data/IApiCoreDbSchemaMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/Data/IApiCoreDbSchemaMigrator.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/Data/NullApiCoreDbSchemaMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/Data/NullApiCoreDbSchemaMigrator.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/FHCollection.ApiCore.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/FHCollection.ApiCore.Application.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Application/Samples/SampleAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Application/Samples/SampleAppService.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.DbMigrator/ApiCoreDbMigratorModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.DbMigrator/ApiCoreDbMigratorModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.DbMigrator/FHCollection.ApiCore.DbMigrator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.DbMigrator/FHCollection.ApiCore.DbMigrator.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.DbMigrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.DbMigrator/Program.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.DbMigrator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.DbMigrator/appsettings.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/ApiCoreDomainSharedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/ApiCoreDomainSharedModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/ApiCoreErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/ApiCoreErrorCodes.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Books/BookType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Books/BookType.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/FHCollection.ApiCore.Domain.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/FHCollection.ApiCore.Domain.Shared.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/cs.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/en.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/pl.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/pt-BR.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCore/DomainShared/vi.json -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCoreResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain.Shared/Localization/ApiCoreResource.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain/ApiCoreConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain/ApiCoreConsts.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain/ApiCoreDomainModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain/ApiCoreDomainModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain/Books/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain/Books/Book.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain/FHCollection.ApiCore.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain/FHCollection.ApiCore.Domain.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain/Settings/ApiCoreSettingDefinitionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain/Settings/ApiCoreSettingDefinitionProvider.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.Domain/Settings/ApiCoreSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.Domain/Settings/ApiCoreSettings.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/ApiCoreEntityFrameworkCoreDbMigrationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/ApiCoreEntityFrameworkCoreDbMigrationsModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/ApiCoreMigrationsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/ApiCoreMigrationsDbContext.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/ApiCoreMigrationsDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/ApiCoreMigrationsDbContextFactory.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/EntityFrameworkCoreApiCoreDbSchemaMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/EntityFrameworkCore/EntityFrameworkCoreApiCoreDbSchemaMigrator.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/Migrations/20190724081757_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/Migrations/20190724081757_init.Designer.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/Migrations/20190724081757_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/Migrations/20190724081757_init.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/Migrations/ApiCoreMigrationsDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore.DbMigrations/Migrations/ApiCoreMigrationsDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreDbContext.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreDbContextModelCreatingExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreDbContextModelCreatingExtensions.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreEntityFrameworkCoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreEntityFrameworkCoreModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreModelBuilderConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/ApiCoreModelBuilderConfigurationOptions.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/IApiCoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore/EntityFrameworkCore/IApiCoreDbContext.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.EntityFrameworkCore/FHCollection.ApiCore.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.EntityFrameworkCore/FHCollection.ApiCore.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.HttpApi.Client/ApiCoreHttpApiClientModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.HttpApi.Client/ApiCoreHttpApiClientModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.HttpApi.Client/FHCollection.ApiCore.HttpApi.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.HttpApi.Client/FHCollection.ApiCore.HttpApi.Client.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.HttpApi/ApiCoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.HttpApi/ApiCoreController.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.HttpApi/ApiCoreHttpApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.HttpApi/ApiCoreHttpApiModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.HttpApi/FHCollection.ApiCore.HttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.HttpApi/FHCollection.ApiCore.HttpApi.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.HttpApi/Samples/SampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.HttpApi/Samples/SampleController.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.MongoDB/FHCollection.ApiCore.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.MongoDB/FHCollection.ApiCore.MongoDB.csproj -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoDbContext.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoDbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoDbContextExtensions.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoDbModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoDbModule.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoModelBuilderConfigurationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.MongoDB/MongoDB/ApiCoreMongoModelBuilderConfigurationOptions.cs -------------------------------------------------------------------------------- /src/FHCollection.ApiCore.MongoDB/MongoDB/IApiCoreMongoDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlgwr/ABPDemoApiSeeds/HEAD/src/FHCollection.ApiCore.MongoDB/MongoDB/IApiCoreMongoDbContext.cs --------------------------------------------------------------------------------