Skip to content
Bubi edited this page Sep 16, 2017 · 2 revisions

This documentation is derived from ErikEJ work.

Entity Framework Core

Entity Framework is Microsoft's recommended data access technology for new applications in .NET.

Entity Framework Core (EF Core) provides a familiar developer experience to previous versions of Entity Framework, including LINQ, POCO, Migrations and Code First support. EF Core also enables access to data across relational and non-relational stores. EF Core is much more lightweight than previous versions and is built from the ground up to work great in the cloud (using ASP.NET vNext) on devices (i.e. in universal Windows apps) as well as in traditional .NET scenarios. You can find the latest documentation on EF Core here

Microsoft Access

Microsoft Access is a database management system (DBMS) from Microsoft that combines the relational Microsoft Jet Database Engine with a graphical user interface and software-development tools. It is a member of the Microsoft Office suite of applications, included in the Professional and higher editions or sold separately.
Microsoft Access stores data in its own format based on the Access Jet Database Engine.

Jet Entity Framework Core provider

The Jet Entity Framework Core provider enable Entity Framework to use mdb and accdb files. It supports all the Entity Framework main features included code first from database (POCO retrieve from old Microsoft Access databases).