├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── default.yml │ ├── dotnet-format.yml │ └── release.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── README.md ├── WeihanLi.EntityFramework.sln.DotSettings ├── WeihanLi.EntityFramework.slnx ├── azure-pipelines.yml ├── docs ├── AdvancedFeatures.md ├── GettingStarted.md ├── ReleaseNotes.md └── Usage.md ├── nuget.config ├── samples └── WeihanLi.EntityFramework.Sample │ ├── AutoAuditContext1.cs │ ├── DbContextInterceptorSamples.cs │ ├── Program.cs │ ├── SoftDeleteSampleContext.cs │ ├── TestDbContext.cs │ └── WeihanLi.EntityFramework.Sample.csproj ├── src ├── WeihanLi.EntityFramework.SourceGenerator │ ├── EFExtensionsGenerator.cs │ └── WeihanLi.EntityFramework.SourceGenerator.csproj └── WeihanLi.EntityFramework │ ├── Audit │ ├── AuditDbContext.cs │ ├── AuditEntry.cs │ ├── AuditExtensions.cs │ ├── AuditInterceptor.cs │ ├── AuditRecord.cs │ ├── AuditRecordsDbContext.cs │ ├── IAuditConfig.cs │ ├── IAuditPropertyEnricher.cs │ └── IAuditStore.cs │ ├── DbContextBase.cs │ ├── DbContextOptionsConfiguration.cs │ ├── DbFunctions.cs │ ├── EFExtensions.cs │ ├── EFInternalExtensions.cs │ ├── EFRepository.cs │ ├── EFRepositoryExtensions.cs │ ├── EFRepositoryFactory.cs │ ├── EFRepositoryFactoryExtensions.cs │ ├── EFRepositoryGenerator.cs │ ├── EFRepositoryGeneratorExtensions.cs │ ├── EFRepositoryGeneratorOptions.cs │ ├── EFRepositoryQueryBuilder.cs │ ├── EFUnitOfWork.cs │ ├── EFUnitOfWorkExtensions.cs │ ├── IEFRepository.cs │ ├── IEFRepositoryBuilder.cs │ ├── IEFRepositoryFactory.cs │ ├── IEFRepositoryGenerator.cs │ ├── IEFUnitOfWork.cs │ ├── IQueryablePageListExtensions.cs │ ├── Interceptors │ ├── AutoUpdateInterceptor.cs │ └── SoftDeleteInterceptor.cs │ ├── InternalHelper.cs │ ├── ServiceCollectionExtension.cs │ ├── Services │ ├── IEntitySavingHandler.cs │ ├── SoftDeleteSavingHandler.cs │ ├── UpdatedAtEntitySavingHandler.cs │ └── UpdatedByEntitySavingHandler.cs │ └── WeihanLi.EntityFramework.csproj └── test └── WeihanLi.EntityFramework.Test ├── EFExtensions.cs ├── EFExtensionsTest.cs ├── EFRepositoryTest.cs ├── EFTestBase.cs ├── EFTestFixture.cs ├── EFUnitOfWorkTest.cs ├── RelationalTest.cs ├── TestDbContext.cs ├── WeihanLi.EntityFramework.Test.csproj └── xunit.runner.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.github/workflows/dotnet-format.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/README.md -------------------------------------------------------------------------------- /WeihanLi.EntityFramework.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/WeihanLi.EntityFramework.sln.DotSettings -------------------------------------------------------------------------------- /WeihanLi.EntityFramework.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/WeihanLi.EntityFramework.slnx -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /docs/AdvancedFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/docs/AdvancedFeatures.md -------------------------------------------------------------------------------- /docs/GettingStarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/docs/GettingStarted.md -------------------------------------------------------------------------------- /docs/ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/docs/ReleaseNotes.md -------------------------------------------------------------------------------- /docs/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/docs/Usage.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/nuget.config -------------------------------------------------------------------------------- /samples/WeihanLi.EntityFramework.Sample/AutoAuditContext1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/samples/WeihanLi.EntityFramework.Sample/AutoAuditContext1.cs -------------------------------------------------------------------------------- /samples/WeihanLi.EntityFramework.Sample/DbContextInterceptorSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/samples/WeihanLi.EntityFramework.Sample/DbContextInterceptorSamples.cs -------------------------------------------------------------------------------- /samples/WeihanLi.EntityFramework.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/samples/WeihanLi.EntityFramework.Sample/Program.cs -------------------------------------------------------------------------------- /samples/WeihanLi.EntityFramework.Sample/SoftDeleteSampleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/samples/WeihanLi.EntityFramework.Sample/SoftDeleteSampleContext.cs -------------------------------------------------------------------------------- /samples/WeihanLi.EntityFramework.Sample/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/samples/WeihanLi.EntityFramework.Sample/TestDbContext.cs -------------------------------------------------------------------------------- /samples/WeihanLi.EntityFramework.Sample/WeihanLi.EntityFramework.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/samples/WeihanLi.EntityFramework.Sample/WeihanLi.EntityFramework.Sample.csproj -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework.SourceGenerator/EFExtensionsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework.SourceGenerator/EFExtensionsGenerator.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework.SourceGenerator/WeihanLi.EntityFramework.SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework.SourceGenerator/WeihanLi.EntityFramework.SourceGenerator.csproj -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/AuditDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/AuditDbContext.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/AuditEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/AuditEntry.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/AuditExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/AuditExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/AuditInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/AuditInterceptor.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/AuditRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/AuditRecord.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/AuditRecordsDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/AuditRecordsDbContext.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/IAuditConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/IAuditConfig.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/IAuditPropertyEnricher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/IAuditPropertyEnricher.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Audit/IAuditStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Audit/IAuditStore.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/DbContextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/DbContextBase.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/DbContextOptionsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/DbContextOptionsConfiguration.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/DbFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/DbFunctions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFInternalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFInternalExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepository.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryFactory.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryFactoryExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryGenerator.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryGeneratorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryGeneratorOptions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFRepositoryQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFRepositoryQueryBuilder.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFUnitOfWork.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/EFUnitOfWorkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/EFUnitOfWorkExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/IEFRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/IEFRepository.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/IEFRepositoryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/IEFRepositoryBuilder.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/IEFRepositoryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/IEFRepositoryFactory.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/IEFRepositoryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/IEFRepositoryGenerator.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/IEFUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/IEFUnitOfWork.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/IQueryablePageListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/IQueryablePageListExtensions.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Interceptors/AutoUpdateInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Interceptors/AutoUpdateInterceptor.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Interceptors/SoftDeleteInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Interceptors/SoftDeleteInterceptor.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/InternalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/InternalHelper.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/ServiceCollectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/ServiceCollectionExtension.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Services/IEntitySavingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Services/IEntitySavingHandler.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Services/SoftDeleteSavingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Services/SoftDeleteSavingHandler.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Services/UpdatedAtEntitySavingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Services/UpdatedAtEntitySavingHandler.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/Services/UpdatedByEntitySavingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/Services/UpdatedByEntitySavingHandler.cs -------------------------------------------------------------------------------- /src/WeihanLi.EntityFramework/WeihanLi.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/src/WeihanLi.EntityFramework/WeihanLi.EntityFramework.csproj -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/EFExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/EFExtensions.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/EFExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/EFExtensionsTest.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/EFRepositoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/EFRepositoryTest.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/EFTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/EFTestBase.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/EFTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/EFTestFixture.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/EFUnitOfWorkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/EFUnitOfWorkTest.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/RelationalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/RelationalTest.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/TestDbContext.cs -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/WeihanLi.EntityFramework.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeihanLi/WeihanLi.EntityFramework/HEAD/test/WeihanLi.EntityFramework.Test/WeihanLi.EntityFramework.Test.csproj -------------------------------------------------------------------------------- /test/WeihanLi.EntityFramework.Test/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "parallelizeTestCollections": false 3 | } --------------------------------------------------------------------------------