-
Notifications
You must be signed in to change notification settings - Fork 41
Upgrade provider and test code to 3.1.x #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
3c692bb
Fix an issue where we were always using the (changeable) static varia…
lauxjpn 25f8685
Use `DbConnectionStringBuilder` instead of its OleDb equivalent.
lauxjpn 47d677d
Revert "Use `DbConnectionStringBuilder` instead of its OleDb equivale…
lauxjpn e3d4027
Merge remote-tracking branch 'freddy/EFCore3.1_Test' into upgrade
lauxjpn 985f618
Adjust solution and project files. Replace occurrences of "SQL Server…
lauxjpn 0ee60b5
Upgrade infrastructure and internal files to 3.1.x.
lauxjpn 9fe1e40
Update shared files to 3.1.x.
lauxjpn ba29bf2
Upgrade diagnostics related files to 3.1.x.
lauxjpn f469233
Upgrade design related files to 3.1.x.
lauxjpn 8ccf288
Upgrade properties related files to 3.1.x.
lauxjpn 885cbb4
Upgrade diagnostics files to 3.1.x.
lauxjpn d7df27a
Upgrade infrastructure and internal files to 3.1.x.
lauxjpn 05ba7de
Upgrade value generation files to 3.1.x.
lauxjpn 6e8cc34
Upgrade storage files to 3.1.x.
lauxjpn 70f2b88
Upgrade sql update generation files to 3.1.x.
lauxjpn 6fffce9
Upgrade scaffolding related files to 3.1.x.
lauxjpn a4328da
Upgrade migration related files to 3.1.x.
lauxjpn 5829ca8
Upgrade query pipeline to 3.1.x.
lauxjpn 24bf603
Remove obsolete files.
lauxjpn 108a3be
Update and fix smaller System.Data.Jet issues.
lauxjpn 1be52ee
Update and fix dependencies.
lauxjpn 0c2fbad
Remove obsolete files.
lauxjpn 583f990
Upgrade and fix System.Data.Jet and System.Data.Jet.Test to 3.1.x.
lauxjpn 66b7124
Upgrade and fix EFCore.Jet.Integration.Test to 3.1.x.
lauxjpn a59af50
Upgrade EFCore.Jet.IntegrationTests.
lauxjpn afd9d85
Remove obsolete tests.
lauxjpn 2eef0b9
Remove obsolete design tests.
lauxjpn 5de0755
Upgrade System.Data.Jet.Test.
lauxjpn 74dd677
Upgrade EFCore.Jet.FunctionalTests.
lauxjpn 24f9708
Fix issues in System.Data.Jet and implement dynamic COM object handling.
lauxjpn e040941
Fix issues in EFCore.Jet and simplify query generation based on tests.
lauxjpn a71fcc1
Update solution and build/infrastructure files.
lauxjpn b117d4e
Cleanup code, remove dummy transaction and add missing Dispose() meth…
lauxjpn 71b5410
Fix dispose pattern for releasing the RCW object.
lauxjpn e6c100e
Switch to multi-targeting.
lauxjpn File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <DefaultNetCoreTargetFramework>netcoreapp3.1</DefaultNetCoreTargetFramework> | ||
| <DefaultNetStandardTargetFramework>netstandard2.0</DefaultNetStandardTargetFramework> | ||
| </PropertyGroup> | ||
|
|
||
| <Import Project=".\build\Dependencies.props" /> | ||
| <Import Project=".\build\Development.props" Condition="Exists('.\build\Development.props')" /> | ||
|
|
||
| <PropertyGroup> | ||
| <VersionPrefix>3.1.0</VersionPrefix> | ||
| <VersionSuffix>alpha</VersionSuffix> | ||
|
|
||
| <Product>EntityFrameworkCore.Jet</Product> | ||
| <Description>Jet (Microsoft Access mdb or accdb files) provider for Entity Framework Core (EFCore)</Description> | ||
| <Authors>Bubi</Authors> | ||
| <Company>Bubi</Company> | ||
| <Copyright>Copyright © 2017-2020 - Bubi</Copyright> | ||
| <TreatWarningsAsErrors>True</TreatWarningsAsErrors> | ||
| <LangVersion>8.0</LangVersion> | ||
| <DebugType>portable</DebugType> | ||
| <IsPackable>False</IsPackable> | ||
| <PublishRepositoryUrl>True</PublishRepositoryUrl> | ||
|
|
||
| <PackageProjectUrl>https://github.com/bubibubi/EntityFrameworkCore.Jet/</PackageProjectUrl> | ||
| <!-- <PackageReleaseNotes>TODO</PackageReleaseNotes> --> | ||
| <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
| <!-- <PackageIconUrl>TODO</PackageIconUrl> --> | ||
| <!-- <PackageIcon>packageIcon.png</PackageIcon> --> | ||
| <!-- <PackageIconFullPath>$(MSBuildThisFileDirectory)packageIcon.png</PackageIconFullPath> --> | ||
| <PackageTags>Entity Framework Core Jet;Entity Framework Core Access;Entity Framework Core MS Access;entity-framework-core-jet;entity-framework-core-access;entity-framework-core-msaccess;EF Jet;EF Access;EF MS Access;Data;O/RM;EntityFramework;EntityFrameworkCore;EFCore;Jet;Access;MS Access</PackageTags> | ||
|
|
||
| <RepositoryType>git</RepositoryType> | ||
| <RepositoryUrl>git://github.com/bubibubi/EntityFrameworkCore.Jet.git</RepositoryUrl> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <EmbeddedResource Include="**\*.rd.xml" /> | ||
| <!-- <None Include="$(PackageIconFullPath)" Pack="true" PackagePath="\"/> --> | ||
| </ItemGroup> | ||
| </Project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Development.props |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| <Project> | ||
| <PropertyGroup> | ||
| <!-- | ||
| Specify the absolute path to the EntityFrameworkCore base directory, | ||
| to compile against that version for better development and local | ||
| debugging support. | ||
|
|
||
| Rename this file "development.props". | ||
|
|
||
| The EFCore assemblies are being compiled with an AssemblyVersion of | ||
| "42.42.42.42" by default. To not get any compilation errors | ||
| for the EFCore.MySql.IntegrationTests project, which uses | ||
| Microsoft.AspNetCore.Identity.EntityFrameworkCore, which references | ||
| it's own version of EFCore, you have to make sure, that your local | ||
| EFCore assemblies are compiled with an AssemblyVersion <= the one | ||
| referenced by Microsoft.AspNetCore.Identity.EntityFrameworkCore | ||
| (e.g. "3.1.0.0"). | ||
|
|
||
| To achive that, run the following command in your EntityFrameworkCore | ||
| base directory: | ||
|
|
||
| dotnet build "/p:AssemblyVersion=3.1.0.0" | ||
| --> | ||
| <LocalEFCoreRepository>C:\Repositories\EntityFrameworkCore</LocalEFCoreRepository> | ||
| </PropertyGroup> | ||
| </Project> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,31 +1,53 @@ | ||
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <PropertyGroup> | ||
| <AspNetCoreVersion>2.1.0-*</AspNetCoreVersion> | ||
| <CoreFxVersion>4.4.0-*</CoreFxVersion> | ||
| <DiagnosticSourceVersion>4.4.1-*</DiagnosticSourceVersion> | ||
| <DependencyModelVersion>2.0.0-*</DependencyModelVersion> | ||
| <InternalAspNetCoreSdkVersion>2.1.1-*</InternalAspNetCoreSdkVersion> | ||
| <JsonNetVersion>10.0.1</JsonNetVersion> | ||
| <NETStandardImplicitPackageVersion>2.0.0-*</NETStandardImplicitPackageVersion> | ||
| <NETStandardLibraryNETFrameworkVersion>2.0.0-*</NETStandardLibraryNETFrameworkVersion> | ||
| <RelinqVersion>2.2.0-alpha-002</RelinqVersion> | ||
| <RoslynVersion>2.3.1</RoslynVersion> | ||
| <RuntimeFrameworkVersion Condition="'$(TargetFramework)'=='netcoreapp2.0'">2.0.0-*</RuntimeFrameworkVersion> | ||
| <SQLitePCLRawVersion>1.1.8</SQLitePCLRawVersion> | ||
| <StyleCopAnalyzersVersion>1.0.0</StyleCopAnalyzersVersion> | ||
| <SystemCollectionsImmutableVersion>1.4.0-*</SystemCollectionsImmutableVersion> | ||
| <SystemInteractiveAsyncVersion>3.1.1</SystemInteractiveAsyncVersion> | ||
| <TestSdkVersion>15.3.0</TestSdkVersion> | ||
| <XunitVersion>2.3.0-beta4-build3742</XunitVersion> | ||
| <XunitVersionInSpecProjects>2.2.0</XunitVersionInSpecProjects> | ||
| <MicrosoftEntityFrameworkCoreVersion>3.1.2</MicrosoftEntityFrameworkCoreVersion> | ||
| <MicrosoftEntityFrameworkCoreRelationalVersion>3.1.2</MicrosoftEntityFrameworkCoreRelationalVersion> | ||
| <MicrosoftExtensionsConfigurationJsonVersion>3.1.2</MicrosoftExtensionsConfigurationJsonVersion> | ||
| <MicrosoftExtensionsDependencyInjection>3.1.2</MicrosoftExtensionsDependencyInjection> | ||
| <MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>3.1.2</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion> | ||
| <MicrosoftExtensionsConfigurationVersion>3.1.2</MicrosoftExtensionsConfigurationVersion> | ||
| <MicrosoftExtensionsCachingMemoryVersion>3.1.2</MicrosoftExtensionsCachingMemoryVersion> | ||
| <MicrosoftExtensionsHostFactoryResolverSourcesVersion>3.1.0-rtm.19565.4</MicrosoftExtensionsHostFactoryResolverSourcesVersion> | ||
| <MicrosoftExtensionsLoggingVersion>3.1.2</MicrosoftExtensionsLoggingVersion> | ||
| <SystemDiagnosticsDiagnosticSourceVersion>4.7.0</SystemDiagnosticsDiagnosticSourceVersion> | ||
| <MicrosoftBclAsyncInterfacesVersion>1.1.0</MicrosoftBclAsyncInterfacesVersion> | ||
| <MicrosoftBclHashCodeVersion>1.1.0</MicrosoftBclHashCodeVersion> | ||
| <SystemCollectionsImmutableVersion>1.7.0</SystemCollectionsImmutableVersion> | ||
| <SystemComponentModelAnnotationsVersion>4.7.0</SystemComponentModelAnnotationsVersion> | ||
| <SystemDataOleDbVersion>5.0.0-preview.3.20171.3</SystemDataOleDbVersion> | ||
| </PropertyGroup> | ||
| <!-- Following package versions must match with what is available on NuGet --> | ||
| <!-- System.Data.Jet --> | ||
| <PropertyGroup> | ||
| <BenchmarkDotNetVersion>0.10.9</BenchmarkDotNetVersion> | ||
| <EF6Version>6.1.3</EF6Version> | ||
| <EFCore1Version>1.1.2</EFCore1Version> | ||
| <EFCore1SqlClientVersion>4.3.1</EFCore1SqlClientVersion> | ||
| <EFCore2Version>2.0.0</EFCore2Version> | ||
| <EFCore2SqlClientVersion>4.4.0</EFCore2SqlClientVersion> | ||
| <MicrosoftCSharp>4.7.0</MicrosoftCSharp> | ||
| </PropertyGroup> | ||
| <!-- System.Data.Jet.Test --> | ||
| <!-- System.Data.Jet.PerformanceTest --> | ||
| <PropertyGroup> | ||
| <MicrosoftNetTestSdk>16.5.0</MicrosoftNetTestSdk> | ||
| <MSTestTestAdapter>2.1.0</MSTestTestAdapter> | ||
| <MSTestTestFramework>2.1.0</MSTestTestFramework> | ||
| <CoverletCollector>1.2.0</CoverletCollector> | ||
| </PropertyGroup> | ||
| <!-- EFCore.Jet.FunctionalTests --> | ||
| <PropertyGroup> | ||
| <XunitCorePackageVersion>2.4.1</XunitCorePackageVersion> | ||
| <XunitAssertPackageVersion>2.4.1</XunitAssertPackageVersion> | ||
| <XunitRunnerVisualStudioPackageVersion>2.4.1</XunitRunnerVisualStudioPackageVersion> | ||
| <XunitRunnerConsolePackageVersion>2.4.1</XunitRunnerConsolePackageVersion> | ||
| <NetTopologySuiteVersion>2.0.0</NetTopologySuiteVersion> | ||
| <SystemComponentModelTypeConverterVersion>4.3.0</SystemComponentModelTypeConverterVersion> | ||
| <CastleCoreVersion>4.4.0</CastleCoreVersion> | ||
| <MicrosoftExtensionsConfigurationEnvironmentVariablesVersion>3.1.0</MicrosoftExtensionsConfigurationEnvironmentVariablesVersion> | ||
| <MicrosoftExtensionsConfigurationFileExtensionsVersion>3.1.2</MicrosoftExtensionsConfigurationFileExtensionsVersion> | ||
| </PropertyGroup> | ||
| <!-- EFCore.Jet.Tests --> | ||
| <PropertyGroup> | ||
| <MicrosoftEntityFrameworkCoreDesignVersion>3.1.0</MicrosoftEntityFrameworkCoreDesignVersion> | ||
| <MicrosoftEntityFrameworkCoreTestsVersion>3.1.0</MicrosoftEntityFrameworkCoreTestsVersion> | ||
| <MicrosoftEntityFrameworkCoreRelationalTestsVersion>3.1.0</MicrosoftEntityFrameworkCoreRelationalTestsVersion> | ||
| <MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion>3.1.0</MicrosoftEntityFrameworkCoreRelationalSpecificationTestsVersion> | ||
| <MicrosoftCodeAnalysisCSharpPackageVersion>3.4.0</MicrosoftCodeAnalysisCSharpPackageVersion> | ||
| <MicrosoftExtensionsDependencyModelPackageVersion>3.1.0</MicrosoftExtensionsDependencyModelPackageVersion> | ||
| <MoqVersion>4.13.1</MoqVersion> | ||
| </PropertyGroup> | ||
| </Project> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.