├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── dotnet.yml ├── .gitignore ├── Directory.Build.props ├── EFCore.SqlServer.DateOnlyTimeOnly.Test ├── CSharpDbContextGeneratorTest.cs ├── CSharpEntityTypeGeneratorTest.cs ├── DateOnlyTypeMappingTests.cs ├── DesignTimeServicesTests.cs ├── EFCore.SqlServer.DateOnlyTimeOnly.Test.csproj ├── MigrationTests.cs ├── ModelCodeGeneratorTestBase.cs ├── Properties │ └── EFCoreSqlServerDateOnlyTimeOnly.cs ├── QueryTests.cs ├── RelationalScaffoldingModelFactoryTest.cs ├── Test │ ├── Logging │ │ ├── TestLogger.cs │ │ └── TestLoggerFactory.cs │ ├── Models │ │ ├── DateAndTimeContext.cs │ │ ├── DateAndTimeContextQuery.cs │ │ ├── EventSchedule.cs │ │ ├── EventScheduleQuery.cs │ │ └── Migrations │ │ │ ├── AnonymousArraySeedContext.cs │ │ │ ├── MigrationContext.cs │ │ │ └── TypedArraySeedContext.cs │ └── Utilities │ │ ├── FakeScaffoldingModelFactory.cs │ │ └── SqlServerTestHelpers.cs └── TimeOnlyTypeMappingTests.cs ├── EFCore.SqlServer.DateOnlyTimeOnly.sln ├── EFCore.SqlServer.DateOnlyTimeOnly ├── Design │ └── SqlServerDateOnlyTimeOnlyDesignTimeServices.cs ├── EFCore.SqlServer.DateOnlyTimeOnly.csproj ├── Extensions │ ├── SqlServerDateOnlyTimeOnlyDbContextOptionsBuilderExtensions.cs │ ├── SqlServerDateOnlyTimeOnlyDbFunctionsExtensions.cs │ └── SqlServerDateOnlyTimeOnlyServiceCollectionExtensions.cs ├── Infrastructure │ └── SqlServerDateOnlyTimeOnlyOptionsExtension.cs ├── Properties │ ├── InternalsVisibleTo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Query │ ├── DateOnlyTimeOnlyTypesMemberTranslatorPlugin.cs │ ├── SqlServerDateDiffFunctionsTranslator.cs │ ├── SqlServerDateOnlyMemberTranslator.cs │ ├── SqlServerDateOnlyMethodCallTranslatorPlugin.cs │ ├── SqlServerDateOnlyMethodTranslator.cs │ ├── SqlServerDateOnlyTimeOnlyObjectToStringTranslator.cs │ ├── SqlServerTimeOnlyMemberTranslator.cs │ ├── SqlServerTimeOnlyMethodCallTranslatorPlugin.cs │ └── SqlServerTimeOnlyMethodTranslator.cs ├── Scaffolding │ └── SqlServerDateOnlyTimeOnlyCodeGeneratorPlugin.cs ├── Storage │ ├── SqlServerDateOnlyTypeMapping.cs │ ├── SqlServerDateOnlyTypeMappingSourcePlugin.cs │ ├── SqlServerTimeOnlyTypeMapping.cs │ └── SqlServerTimeOnlyTypeMappingSourcePlugin.cs └── build │ └── net6.0 │ └── ErikEJ.EntityFrameworkCore.SqlServer.DateOnlyTimeOnly.targets ├── LICENSE ├── README.md └── keyfile.snk /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/CSharpDbContextGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/CSharpDbContextGeneratorTest.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/CSharpEntityTypeGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/CSharpEntityTypeGeneratorTest.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/DateOnlyTypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/DateOnlyTypeMappingTests.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/DesignTimeServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/DesignTimeServicesTests.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/EFCore.SqlServer.DateOnlyTimeOnly.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/EFCore.SqlServer.DateOnlyTimeOnly.Test.csproj -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/MigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/MigrationTests.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/ModelCodeGeneratorTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/ModelCodeGeneratorTestBase.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Properties/EFCoreSqlServerDateOnlyTimeOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Properties/EFCoreSqlServerDateOnlyTimeOnly.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/QueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/QueryTests.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/RelationalScaffoldingModelFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/RelationalScaffoldingModelFactoryTest.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Logging/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Logging/TestLogger.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Logging/TestLoggerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Logging/TestLoggerFactory.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/DateAndTimeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/DateAndTimeContext.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/DateAndTimeContextQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/DateAndTimeContextQuery.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/EventSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/EventSchedule.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/EventScheduleQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/EventScheduleQuery.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/Migrations/AnonymousArraySeedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/Migrations/AnonymousArraySeedContext.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/Migrations/MigrationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/Migrations/MigrationContext.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/Migrations/TypedArraySeedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Models/Migrations/TypedArraySeedContext.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Utilities/FakeScaffoldingModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Utilities/FakeScaffoldingModelFactory.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Utilities/SqlServerTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/Test/Utilities/SqlServerTestHelpers.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.Test/TimeOnlyTypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.Test/TimeOnlyTypeMappingTests.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly.sln -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Design/SqlServerDateOnlyTimeOnlyDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Design/SqlServerDateOnlyTimeOnlyDesignTimeServices.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/EFCore.SqlServer.DateOnlyTimeOnly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/EFCore.SqlServer.DateOnlyTimeOnly.csproj -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Extensions/SqlServerDateOnlyTimeOnlyDbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Extensions/SqlServerDateOnlyTimeOnlyDbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Extensions/SqlServerDateOnlyTimeOnlyDbFunctionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Extensions/SqlServerDateOnlyTimeOnlyDbFunctionsExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Extensions/SqlServerDateOnlyTimeOnlyServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Extensions/SqlServerDateOnlyTimeOnlyServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Infrastructure/SqlServerDateOnlyTimeOnlyOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Infrastructure/SqlServerDateOnlyTimeOnlyOptionsExtension.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Properties/Resources.resx -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/DateOnlyTimeOnlyTypesMemberTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/DateOnlyTimeOnlyTypesMemberTranslatorPlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateDiffFunctionsTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateDiffFunctionsTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyMemberTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyMemberTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyMethodCallTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyMethodCallTranslatorPlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyMethodTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyMethodTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyTimeOnlyObjectToStringTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerDateOnlyTimeOnlyObjectToStringTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerTimeOnlyMemberTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerTimeOnlyMemberTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerTimeOnlyMethodCallTranslatorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerTimeOnlyMethodCallTranslatorPlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerTimeOnlyMethodTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Query/SqlServerTimeOnlyMethodTranslator.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Scaffolding/SqlServerDateOnlyTimeOnlyCodeGeneratorPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Scaffolding/SqlServerDateOnlyTimeOnlyCodeGeneratorPlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerDateOnlyTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerDateOnlyTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerDateOnlyTypeMappingSourcePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerDateOnlyTypeMappingSourcePlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerTimeOnlyTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerTimeOnlyTypeMapping.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerTimeOnlyTypeMappingSourcePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/Storage/SqlServerTimeOnlyTypeMappingSourcePlugin.cs -------------------------------------------------------------------------------- /EFCore.SqlServer.DateOnlyTimeOnly/build/net6.0/ErikEJ.EntityFrameworkCore.SqlServer.DateOnlyTimeOnly.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/EFCore.SqlServer.DateOnlyTimeOnly/build/net6.0/ErikEJ.EntityFrameworkCore.SqlServer.DateOnlyTimeOnly.targets -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/README.md -------------------------------------------------------------------------------- /keyfile.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ErikEJ/EFCore.SqlServer.DateOnlyTimeOnly/HEAD/keyfile.snk --------------------------------------------------------------------------------