├── .editorconfig ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── AppHost ├── AppHost.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── BackingFields ├── ApplicationDbContext.cs ├── BackingFields.csproj ├── Product.cs ├── Program.cs └── readme.md ├── BufferingAndStreaming ├── ApplicationDbContext.cs ├── BufferingAndStreaming.csproj ├── Product.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── readme.md ├── BulkDeletes ├── ApplicationDbContext.cs ├── BulkDeletes.csproj ├── Product.cs ├── Program.cs └── readme.md ├── BulkUpdates ├── ApplicationDbContext.cs ├── BulkUpdates.csproj ├── Product.cs ├── Program.cs └── readme.md ├── Common ├── Common.csproj └── DbConnectionFactory.cs ├── CompiledModels ├── ApplicationDbContext.cs ├── CompiledModels.csproj ├── CompiledModels │ ├── ApplicationDbContextModel.cs │ ├── ApplicationDbContextModelBuilder.cs │ └── ProductEntityType.cs ├── Product.cs ├── Program.cs └── readme.md ├── CompiledQueries ├── ApplicationDbContext.cs ├── CompiledQueries.csproj ├── Product.cs ├── ProductQueries.cs ├── Program.cs └── readme.md ├── ComplexTypes ├── ApplicationDbContext.cs ├── ComplexTypes.csproj ├── Contact.cs ├── Program.cs └── readme.md ├── DateOnlyTimeOnly ├── ApplicationDbContext.cs ├── DateOnlyTimeOnly.csproj ├── Product.cs ├── Program.cs └── readme.md ├── DbContextPooling ├── ApplicationDbContext.cs ├── DbContextPooling.csproj ├── Product.cs ├── Program.cs └── readme.md ├── Directory.Build.props ├── Directory.Packages.props ├── EfCoreSamples.sln ├── EnhancedBulkUpdateAndDelete ├── ApplicationDbContext.cs ├── EnhancedBulkUpdateAndDelete.csproj ├── Product.cs ├── Program.cs └── readme.md ├── EnhancedJsonColumns ├── ApplicationDbContext.cs ├── EnhancedJsonColumns.csproj ├── Product.cs ├── Program.cs └── readme.md ├── HierarchyIds ├── ApplicationDbContext.cs ├── Employee.cs ├── HierarchyIds.csproj ├── Program.cs └── readme.md ├── JsonColumns ├── ApplicationDbContext.cs ├── Entities.cs ├── JsonColumns.csproj ├── Program.cs └── readme.md ├── KeysetPagination ├── ApplicationDbContext.cs ├── KeysetPagination.csproj ├── Product.cs ├── Program.cs └── readme.md ├── LICENSE ├── MigrationBundles ├── ApplicationDbContext.cs ├── ApplyBundleToEnvironment.ps1 ├── ApplyBundleToLocal.ps1 ├── MigrationBundles.csproj ├── Migrations │ ├── 20230505072933_Initial.Designer.cs │ ├── 20230505072933_Initial.cs │ ├── 20230505073015_Prodcut_IsDeleted.Designer.cs │ ├── 20230505073015_Prodcut_IsDeleted.cs │ ├── 20230505073154_Prodcut_Timestamps.Designer.cs │ ├── 20230505073154_Prodcut_Timestamps.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Product.cs ├── Program.cs ├── global.json └── readme.md ├── OwnedEntities ├── ApplicationDbContext.cs ├── Contact.cs ├── OwnedEntities.csproj ├── Program.cs └── readme.md ├── PrimitiveCollections ├── ApplicationDbContext.cs ├── PrimitiveCollections.csproj ├── Product.cs ├── Program.cs └── readme.md ├── QueryFilters ├── ApplicationDbContext.cs ├── Product.cs ├── Program.cs ├── QueryFilters.csproj ├── QueryFilters.sln └── readme.md ├── SentinelValues ├── Account.cs ├── ApplicationDbContext.cs ├── Program.cs ├── SentinelValues.csproj └── readme.md ├── Sequences ├── ApplicationDbContext.cs ├── Entities.cs ├── Program.cs ├── Sequences.csproj └── readme.md ├── ShadowProperties ├── ApplicationDbContext.cs ├── Entities.cs ├── Program.cs ├── ShadowProperties.csproj └── readme.md ├── SplitQueries ├── BloggingContext.cs ├── Entities.cs ├── Program.cs ├── SplitQueries.csproj └── readme.md ├── TablePerConcreteType ├── Complex │ ├── ComplexDbContext.cs │ └── Entities.cs ├── Program.cs ├── Simple │ ├── Entities.cs │ └── SimpleDbContext.cs ├── TablePerConcreateType.csproj └── readme.md ├── TablePerHierarchy ├── Complex │ ├── ComplexDbContext.cs │ └── Entities.cs ├── Program.cs ├── Simple │ ├── Entities.cs │ └── SimpleDbContext.cs ├── TablePerHierarchy.csproj └── readme.md ├── TablePerType ├── Complex │ ├── ComplexDbContext.cs │ └── Entities.cs ├── Program.cs ├── Simple │ ├── Entities.cs │ └── SimpleDbContext.cs ├── TablePerType.csproj └── readme.md ├── Tags ├── ApplicationDbContext.cs ├── Product.cs ├── Program.cs ├── Tags.csproj └── readme.md ├── TemporalTables ├── ApplicationDbContext.cs ├── Product.cs ├── Program.cs ├── TemporalTables.csproj └── readme.md ├── UnmappedTypes ├── ApplicationDbContext.cs ├── Product.cs ├── Program.cs ├── UnmappedTypes.csproj └── readme.md ├── ValueConverters ├── ApplicationDbContext.cs ├── Product.cs ├── Program.cs ├── ValueConverters.csproj └── readme.md └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /AppHost/AppHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/AppHost/AppHost.csproj -------------------------------------------------------------------------------- /AppHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/AppHost/Program.cs -------------------------------------------------------------------------------- /AppHost/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/AppHost/Properties/launchSettings.json -------------------------------------------------------------------------------- /AppHost/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/AppHost/appsettings.Development.json -------------------------------------------------------------------------------- /AppHost/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/AppHost/appsettings.json -------------------------------------------------------------------------------- /BackingFields/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BackingFields/ApplicationDbContext.cs -------------------------------------------------------------------------------- /BackingFields/BackingFields.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BackingFields/BackingFields.csproj -------------------------------------------------------------------------------- /BackingFields/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BackingFields/Product.cs -------------------------------------------------------------------------------- /BackingFields/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BackingFields/Program.cs -------------------------------------------------------------------------------- /BackingFields/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BackingFields/readme.md -------------------------------------------------------------------------------- /BufferingAndStreaming/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BufferingAndStreaming/ApplicationDbContext.cs -------------------------------------------------------------------------------- /BufferingAndStreaming/BufferingAndStreaming.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BufferingAndStreaming/BufferingAndStreaming.csproj -------------------------------------------------------------------------------- /BufferingAndStreaming/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BufferingAndStreaming/Product.cs -------------------------------------------------------------------------------- /BufferingAndStreaming/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BufferingAndStreaming/Program.cs -------------------------------------------------------------------------------- /BufferingAndStreaming/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BufferingAndStreaming/Properties/launchSettings.json -------------------------------------------------------------------------------- /BufferingAndStreaming/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BufferingAndStreaming/readme.md -------------------------------------------------------------------------------- /BulkDeletes/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkDeletes/ApplicationDbContext.cs -------------------------------------------------------------------------------- /BulkDeletes/BulkDeletes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkDeletes/BulkDeletes.csproj -------------------------------------------------------------------------------- /BulkDeletes/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkDeletes/Product.cs -------------------------------------------------------------------------------- /BulkDeletes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkDeletes/Program.cs -------------------------------------------------------------------------------- /BulkDeletes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkDeletes/readme.md -------------------------------------------------------------------------------- /BulkUpdates/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkUpdates/ApplicationDbContext.cs -------------------------------------------------------------------------------- /BulkUpdates/BulkUpdates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkUpdates/BulkUpdates.csproj -------------------------------------------------------------------------------- /BulkUpdates/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkUpdates/Product.cs -------------------------------------------------------------------------------- /BulkUpdates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkUpdates/Program.cs -------------------------------------------------------------------------------- /BulkUpdates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/BulkUpdates/readme.md -------------------------------------------------------------------------------- /Common/Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Common/Common.csproj -------------------------------------------------------------------------------- /Common/DbConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Common/DbConnectionFactory.cs -------------------------------------------------------------------------------- /CompiledModels/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/ApplicationDbContext.cs -------------------------------------------------------------------------------- /CompiledModels/CompiledModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/CompiledModels.csproj -------------------------------------------------------------------------------- /CompiledModels/CompiledModels/ApplicationDbContextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/CompiledModels/ApplicationDbContextModel.cs -------------------------------------------------------------------------------- /CompiledModels/CompiledModels/ApplicationDbContextModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/CompiledModels/ApplicationDbContextModelBuilder.cs -------------------------------------------------------------------------------- /CompiledModels/CompiledModels/ProductEntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/CompiledModels/ProductEntityType.cs -------------------------------------------------------------------------------- /CompiledModels/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/Product.cs -------------------------------------------------------------------------------- /CompiledModels/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/Program.cs -------------------------------------------------------------------------------- /CompiledModels/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledModels/readme.md -------------------------------------------------------------------------------- /CompiledQueries/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledQueries/ApplicationDbContext.cs -------------------------------------------------------------------------------- /CompiledQueries/CompiledQueries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledQueries/CompiledQueries.csproj -------------------------------------------------------------------------------- /CompiledQueries/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledQueries/Product.cs -------------------------------------------------------------------------------- /CompiledQueries/ProductQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledQueries/ProductQueries.cs -------------------------------------------------------------------------------- /CompiledQueries/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledQueries/Program.cs -------------------------------------------------------------------------------- /CompiledQueries/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/CompiledQueries/readme.md -------------------------------------------------------------------------------- /ComplexTypes/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ComplexTypes/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ComplexTypes/ComplexTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ComplexTypes/ComplexTypes.csproj -------------------------------------------------------------------------------- /ComplexTypes/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ComplexTypes/Contact.cs -------------------------------------------------------------------------------- /ComplexTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ComplexTypes/Program.cs -------------------------------------------------------------------------------- /ComplexTypes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ComplexTypes/readme.md -------------------------------------------------------------------------------- /DateOnlyTimeOnly/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DateOnlyTimeOnly/ApplicationDbContext.cs -------------------------------------------------------------------------------- /DateOnlyTimeOnly/DateOnlyTimeOnly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DateOnlyTimeOnly/DateOnlyTimeOnly.csproj -------------------------------------------------------------------------------- /DateOnlyTimeOnly/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DateOnlyTimeOnly/Product.cs -------------------------------------------------------------------------------- /DateOnlyTimeOnly/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DateOnlyTimeOnly/Program.cs -------------------------------------------------------------------------------- /DateOnlyTimeOnly/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DateOnlyTimeOnly/readme.md -------------------------------------------------------------------------------- /DbContextPooling/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DbContextPooling/ApplicationDbContext.cs -------------------------------------------------------------------------------- /DbContextPooling/DbContextPooling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DbContextPooling/DbContextPooling.csproj -------------------------------------------------------------------------------- /DbContextPooling/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DbContextPooling/Product.cs -------------------------------------------------------------------------------- /DbContextPooling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DbContextPooling/Program.cs -------------------------------------------------------------------------------- /DbContextPooling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/DbContextPooling/readme.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /EfCoreSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EfCoreSamples.sln -------------------------------------------------------------------------------- /EnhancedBulkUpdateAndDelete/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedBulkUpdateAndDelete/ApplicationDbContext.cs -------------------------------------------------------------------------------- /EnhancedBulkUpdateAndDelete/EnhancedBulkUpdateAndDelete.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedBulkUpdateAndDelete/EnhancedBulkUpdateAndDelete.csproj -------------------------------------------------------------------------------- /EnhancedBulkUpdateAndDelete/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedBulkUpdateAndDelete/Product.cs -------------------------------------------------------------------------------- /EnhancedBulkUpdateAndDelete/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedBulkUpdateAndDelete/Program.cs -------------------------------------------------------------------------------- /EnhancedBulkUpdateAndDelete/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedBulkUpdateAndDelete/readme.md -------------------------------------------------------------------------------- /EnhancedJsonColumns/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedJsonColumns/ApplicationDbContext.cs -------------------------------------------------------------------------------- /EnhancedJsonColumns/EnhancedJsonColumns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedJsonColumns/EnhancedJsonColumns.csproj -------------------------------------------------------------------------------- /EnhancedJsonColumns/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedJsonColumns/Product.cs -------------------------------------------------------------------------------- /EnhancedJsonColumns/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedJsonColumns/Program.cs -------------------------------------------------------------------------------- /EnhancedJsonColumns/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/EnhancedJsonColumns/readme.md -------------------------------------------------------------------------------- /HierarchyIds/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/HierarchyIds/ApplicationDbContext.cs -------------------------------------------------------------------------------- /HierarchyIds/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/HierarchyIds/Employee.cs -------------------------------------------------------------------------------- /HierarchyIds/HierarchyIds.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/HierarchyIds/HierarchyIds.csproj -------------------------------------------------------------------------------- /HierarchyIds/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/HierarchyIds/Program.cs -------------------------------------------------------------------------------- /HierarchyIds/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/HierarchyIds/readme.md -------------------------------------------------------------------------------- /JsonColumns/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/JsonColumns/ApplicationDbContext.cs -------------------------------------------------------------------------------- /JsonColumns/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/JsonColumns/Entities.cs -------------------------------------------------------------------------------- /JsonColumns/JsonColumns.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/JsonColumns/JsonColumns.csproj -------------------------------------------------------------------------------- /JsonColumns/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/JsonColumns/Program.cs -------------------------------------------------------------------------------- /JsonColumns/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/JsonColumns/readme.md -------------------------------------------------------------------------------- /KeysetPagination/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/KeysetPagination/ApplicationDbContext.cs -------------------------------------------------------------------------------- /KeysetPagination/KeysetPagination.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/KeysetPagination/KeysetPagination.csproj -------------------------------------------------------------------------------- /KeysetPagination/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/KeysetPagination/Product.cs -------------------------------------------------------------------------------- /KeysetPagination/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/KeysetPagination/Program.cs -------------------------------------------------------------------------------- /KeysetPagination/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/KeysetPagination/readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /MigrationBundles/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/ApplicationDbContext.cs -------------------------------------------------------------------------------- /MigrationBundles/ApplyBundleToEnvironment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/ApplyBundleToEnvironment.ps1 -------------------------------------------------------------------------------- /MigrationBundles/ApplyBundleToLocal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/ApplyBundleToLocal.ps1 -------------------------------------------------------------------------------- /MigrationBundles/MigrationBundles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/MigrationBundles.csproj -------------------------------------------------------------------------------- /MigrationBundles/Migrations/20230505072933_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/20230505072933_Initial.Designer.cs -------------------------------------------------------------------------------- /MigrationBundles/Migrations/20230505072933_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/20230505072933_Initial.cs -------------------------------------------------------------------------------- /MigrationBundles/Migrations/20230505073015_Prodcut_IsDeleted.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/20230505073015_Prodcut_IsDeleted.Designer.cs -------------------------------------------------------------------------------- /MigrationBundles/Migrations/20230505073015_Prodcut_IsDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/20230505073015_Prodcut_IsDeleted.cs -------------------------------------------------------------------------------- /MigrationBundles/Migrations/20230505073154_Prodcut_Timestamps.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/20230505073154_Prodcut_Timestamps.Designer.cs -------------------------------------------------------------------------------- /MigrationBundles/Migrations/20230505073154_Prodcut_Timestamps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/20230505073154_Prodcut_Timestamps.cs -------------------------------------------------------------------------------- /MigrationBundles/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /MigrationBundles/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Product.cs -------------------------------------------------------------------------------- /MigrationBundles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/Program.cs -------------------------------------------------------------------------------- /MigrationBundles/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/global.json -------------------------------------------------------------------------------- /MigrationBundles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/MigrationBundles/readme.md -------------------------------------------------------------------------------- /OwnedEntities/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/OwnedEntities/ApplicationDbContext.cs -------------------------------------------------------------------------------- /OwnedEntities/Contact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/OwnedEntities/Contact.cs -------------------------------------------------------------------------------- /OwnedEntities/OwnedEntities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/OwnedEntities/OwnedEntities.csproj -------------------------------------------------------------------------------- /OwnedEntities/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/OwnedEntities/Program.cs -------------------------------------------------------------------------------- /OwnedEntities/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/OwnedEntities/readme.md -------------------------------------------------------------------------------- /PrimitiveCollections/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/PrimitiveCollections/ApplicationDbContext.cs -------------------------------------------------------------------------------- /PrimitiveCollections/PrimitiveCollections.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/PrimitiveCollections/PrimitiveCollections.csproj -------------------------------------------------------------------------------- /PrimitiveCollections/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/PrimitiveCollections/Product.cs -------------------------------------------------------------------------------- /PrimitiveCollections/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/PrimitiveCollections/Program.cs -------------------------------------------------------------------------------- /PrimitiveCollections/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/PrimitiveCollections/readme.md -------------------------------------------------------------------------------- /QueryFilters/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/QueryFilters/ApplicationDbContext.cs -------------------------------------------------------------------------------- /QueryFilters/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/QueryFilters/Product.cs -------------------------------------------------------------------------------- /QueryFilters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/QueryFilters/Program.cs -------------------------------------------------------------------------------- /QueryFilters/QueryFilters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/QueryFilters/QueryFilters.csproj -------------------------------------------------------------------------------- /QueryFilters/QueryFilters.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/QueryFilters/QueryFilters.sln -------------------------------------------------------------------------------- /QueryFilters/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/QueryFilters/readme.md -------------------------------------------------------------------------------- /SentinelValues/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SentinelValues/Account.cs -------------------------------------------------------------------------------- /SentinelValues/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SentinelValues/ApplicationDbContext.cs -------------------------------------------------------------------------------- /SentinelValues/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SentinelValues/Program.cs -------------------------------------------------------------------------------- /SentinelValues/SentinelValues.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SentinelValues/SentinelValues.csproj -------------------------------------------------------------------------------- /SentinelValues/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SentinelValues/readme.md -------------------------------------------------------------------------------- /Sequences/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Sequences/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Sequences/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Sequences/Entities.cs -------------------------------------------------------------------------------- /Sequences/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Sequences/Program.cs -------------------------------------------------------------------------------- /Sequences/Sequences.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Sequences/Sequences.csproj -------------------------------------------------------------------------------- /Sequences/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Sequences/readme.md -------------------------------------------------------------------------------- /ShadowProperties/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ShadowProperties/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ShadowProperties/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ShadowProperties/Entities.cs -------------------------------------------------------------------------------- /ShadowProperties/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ShadowProperties/Program.cs -------------------------------------------------------------------------------- /ShadowProperties/ShadowProperties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ShadowProperties/ShadowProperties.csproj -------------------------------------------------------------------------------- /ShadowProperties/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ShadowProperties/readme.md -------------------------------------------------------------------------------- /SplitQueries/BloggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SplitQueries/BloggingContext.cs -------------------------------------------------------------------------------- /SplitQueries/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SplitQueries/Entities.cs -------------------------------------------------------------------------------- /SplitQueries/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SplitQueries/Program.cs -------------------------------------------------------------------------------- /SplitQueries/SplitQueries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SplitQueries/SplitQueries.csproj -------------------------------------------------------------------------------- /SplitQueries/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/SplitQueries/readme.md -------------------------------------------------------------------------------- /TablePerConcreteType/Complex/ComplexDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/Complex/ComplexDbContext.cs -------------------------------------------------------------------------------- /TablePerConcreteType/Complex/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/Complex/Entities.cs -------------------------------------------------------------------------------- /TablePerConcreteType/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/Program.cs -------------------------------------------------------------------------------- /TablePerConcreteType/Simple/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/Simple/Entities.cs -------------------------------------------------------------------------------- /TablePerConcreteType/Simple/SimpleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/Simple/SimpleDbContext.cs -------------------------------------------------------------------------------- /TablePerConcreteType/TablePerConcreateType.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/TablePerConcreateType.csproj -------------------------------------------------------------------------------- /TablePerConcreteType/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerConcreteType/readme.md -------------------------------------------------------------------------------- /TablePerHierarchy/Complex/ComplexDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/Complex/ComplexDbContext.cs -------------------------------------------------------------------------------- /TablePerHierarchy/Complex/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/Complex/Entities.cs -------------------------------------------------------------------------------- /TablePerHierarchy/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/Program.cs -------------------------------------------------------------------------------- /TablePerHierarchy/Simple/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/Simple/Entities.cs -------------------------------------------------------------------------------- /TablePerHierarchy/Simple/SimpleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/Simple/SimpleDbContext.cs -------------------------------------------------------------------------------- /TablePerHierarchy/TablePerHierarchy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/TablePerHierarchy.csproj -------------------------------------------------------------------------------- /TablePerHierarchy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerHierarchy/readme.md -------------------------------------------------------------------------------- /TablePerType/Complex/ComplexDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/Complex/ComplexDbContext.cs -------------------------------------------------------------------------------- /TablePerType/Complex/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/Complex/Entities.cs -------------------------------------------------------------------------------- /TablePerType/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/Program.cs -------------------------------------------------------------------------------- /TablePerType/Simple/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/Simple/Entities.cs -------------------------------------------------------------------------------- /TablePerType/Simple/SimpleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/Simple/SimpleDbContext.cs -------------------------------------------------------------------------------- /TablePerType/TablePerType.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/TablePerType.csproj -------------------------------------------------------------------------------- /TablePerType/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TablePerType/readme.md -------------------------------------------------------------------------------- /Tags/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Tags/ApplicationDbContext.cs -------------------------------------------------------------------------------- /Tags/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Tags/Product.cs -------------------------------------------------------------------------------- /Tags/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Tags/Program.cs -------------------------------------------------------------------------------- /Tags/Tags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Tags/Tags.csproj -------------------------------------------------------------------------------- /Tags/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/Tags/readme.md -------------------------------------------------------------------------------- /TemporalTables/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TemporalTables/ApplicationDbContext.cs -------------------------------------------------------------------------------- /TemporalTables/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TemporalTables/Product.cs -------------------------------------------------------------------------------- /TemporalTables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TemporalTables/Program.cs -------------------------------------------------------------------------------- /TemporalTables/TemporalTables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TemporalTables/TemporalTables.csproj -------------------------------------------------------------------------------- /TemporalTables/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/TemporalTables/readme.md -------------------------------------------------------------------------------- /UnmappedTypes/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/UnmappedTypes/ApplicationDbContext.cs -------------------------------------------------------------------------------- /UnmappedTypes/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/UnmappedTypes/Product.cs -------------------------------------------------------------------------------- /UnmappedTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/UnmappedTypes/Program.cs -------------------------------------------------------------------------------- /UnmappedTypes/UnmappedTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/UnmappedTypes/UnmappedTypes.csproj -------------------------------------------------------------------------------- /UnmappedTypes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/UnmappedTypes/readme.md -------------------------------------------------------------------------------- /ValueConverters/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ValueConverters/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ValueConverters/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ValueConverters/Product.cs -------------------------------------------------------------------------------- /ValueConverters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ValueConverters/Program.cs -------------------------------------------------------------------------------- /ValueConverters/ValueConverters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ValueConverters/ValueConverters.csproj -------------------------------------------------------------------------------- /ValueConverters/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/ValueConverters/readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielmackay/dotnet-ef-core-samples/HEAD/readme.md --------------------------------------------------------------------------------