First documentation commit

2.2-servicing
bubibubi 8 years ago
parent ef0e31818f
commit 3773c309e3

@ -28,6 +28,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EFCore.Jet.Integration.Test
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EFCore.Jet.FunctionalTests", "test\EFCore.Jet.FunctionalTests\EFCore.Jet.FunctionalTests.csproj", "{3C88D49A-7EF2-42BA-A8D7-9DF7D358FD24}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "docs", "docs", "{B7FF1850-23D0-465A-9D45-7EDEB9A23AD8}"
ProjectSection(SolutionItems) = preProject
docs\README.md = docs\README.md
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU

File diff suppressed because it is too large Load Diff

@ -0,0 +1,12 @@
# EntityFrameworkCore.Jet
This project is the Entity Framework Core provider for Jet (Microsoft Access mdb and accdb file format).
This provider is mainly intended for desktop applications under .NET 4.6.1 (Console, WPF, WinForms and Services), but
may also work under ASP.NET 4.6 and ASP.NET Core 1.0 when using the .NET Framework runtime. It does **not** work under
the .NET Core runtime (netcore and netstandard).
You can find the latest build on [NuGet](https://www.nuget.org/packages/EntityFrameworkCore.Jet/)
**Questions**
For question on how to use it please use stackoverflow, tags _access-ef-provider_ and _jet-ef-provider_.

@ -174,6 +174,12 @@ namespace EntityFramework.Jet.FunctionalTests
*/
}
[Fact(Skip = "Unsupported by JET: SKIP TAKE DISTINCT")]
public override Task Skip_Distinct()
{
return base.Skip_Distinct();
}
[Fact(Skip = "Unsupported by JET: SKIP TAKE DISTINCT")]
public override Task Take_Skip_Distinct()
{

Loading…
Cancel
Save