├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── EntityFramework.VersionedProperties.sln ├── EntityFramework.VersionedProperties.sln.DotSettings ├── EntityFramework.VersionedProperties ├── App.config ├── EntityFramework.VersionedProperties.csproj └── packages.config ├── EntityFrameworkCore.VersionedProperties ├── DbContextWithVersionedProperties.cs ├── EntityFrameworkCore.VersionedProperties.csproj ├── IDbContextWithVersionedProperties.cs ├── IVersioned.cs ├── ReflectionExtensions.cs ├── Version.cs ├── Versioned.cs ├── VersionedBase.cs ├── VersionedProperties_1.cs └── VersionedRequiredValueBase.cs ├── README.md ├── Tests ├── App.config ├── Tests.csproj └── packages.config └── TestsCore ├── Context.cs ├── Person.cs ├── TestBase.cs ├── TestsCore.csproj └── UnitTests.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /EntityFramework.VersionedProperties.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFramework.VersionedProperties.sln -------------------------------------------------------------------------------- /EntityFramework.VersionedProperties.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFramework.VersionedProperties.sln.DotSettings -------------------------------------------------------------------------------- /EntityFramework.VersionedProperties/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFramework.VersionedProperties/App.config -------------------------------------------------------------------------------- /EntityFramework.VersionedProperties/EntityFramework.VersionedProperties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFramework.VersionedProperties/EntityFramework.VersionedProperties.csproj -------------------------------------------------------------------------------- /EntityFramework.VersionedProperties/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFramework.VersionedProperties/packages.config -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/DbContextWithVersionedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/DbContextWithVersionedProperties.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/EntityFrameworkCore.VersionedProperties.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/EntityFrameworkCore.VersionedProperties.csproj -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/IDbContextWithVersionedProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/IDbContextWithVersionedProperties.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/IVersioned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/IVersioned.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/ReflectionExtensions.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/Version.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/Versioned.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/Versioned.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/VersionedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/VersionedBase.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/VersionedProperties_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/VersionedProperties_1.cs -------------------------------------------------------------------------------- /EntityFrameworkCore.VersionedProperties/VersionedRequiredValueBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/EntityFrameworkCore.VersionedProperties/VersionedRequiredValueBase.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/README.md -------------------------------------------------------------------------------- /Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/Tests/App.config -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/Tests/packages.config -------------------------------------------------------------------------------- /TestsCore/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/TestsCore/Context.cs -------------------------------------------------------------------------------- /TestsCore/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/TestsCore/Person.cs -------------------------------------------------------------------------------- /TestsCore/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/TestsCore/TestBase.cs -------------------------------------------------------------------------------- /TestsCore/TestsCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/TestsCore/TestsCore.csproj -------------------------------------------------------------------------------- /TestsCore/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NickStrupat/EntityFramework.VersionedProperties/HEAD/TestsCore/UnitTests.cs --------------------------------------------------------------------------------