EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
Перейти к файлу
Smit Patel 778a843444 Remove Relational.Design package 2017-06-02 09:50:42 -07:00
.github Fix typo in issue template: repoduce -> reproduce 2017-03-27 15:03:11 -04:00
build Branching for rel/2.0.0-preview2 2017-05-31 19:36:26 -07:00
src Remove Relational.Design package 2017-06-02 09:50:42 -07:00
test Remove Relational.Design package 2017-06-02 09:50:42 -07:00
tools API review changes for diagnostics/logging 2017-05-24 09:31:02 -07:00
.gitattributes Update git artifacts 2017-03-13 12:02:22 -07:00
.gitignore Query: Include compiler: First part of recursive compiler - handle any Include path having at most one collection include anywhere in the path. 2017-04-13 16:19:47 -07:00
CONTRIBUTING.md Update Home master -> Home dev 2015-05-12 11:46:58 -07:00
EFCore.sln Remove Relational.Design package 2017-06-02 09:50:42 -07:00
EFCore.sln.DotSettings Query: Handle type convert for Round/Truncate operator 2017-04-21 17:41:37 -07:00
LICENSE.txt Update LICENSE.txt and license header on files. 2015-05-01 13:48:54 -07:00
NuGet.config Branching for rel/2.0.0-preview2 2017-05-31 19:36:26 -07:00
NuGetPackageVerifier.json Merge repo 'aspnet/EntityFramework.Tools' in 2017-03-14 09:04:07 -07:00
README.md Disable travis builds till we investigate the failures 2017-05-24 18:37:53 -07:00
appveyor.yml Build rel branches on travis & appveyor 2017-05-08 16:59:26 -07:00
build.cmd Return the error code from build.cmd 2016-02-28 10:12:15 -08:00
build.ps1 Updating build scripts to point to 2.0.0-preview2 KoreBuild 2017-05-31 19:53:16 -07:00
build.sh Updating build scripts to point to 2.0.0-preview2 KoreBuild 2017-05-31 19:53:16 -07:00
version.props Updating package version to preview2 2017-04-26 07:12:50 -07:00

README.md

Entity Framework Core

Documentation on using EF Core is available at https://docs.microsoft.com/ef/.

AppVeyor build status

EF Core here, EF6 elsewhere

This project is for Entity Framework Core. Entity Framework 6.x is still under active development at https://github.com/aspnet/EntityFramework6.

What is EF Core?

Entity Framework (EF) Core is a lightweight and extensible version of the popular Entity Framework data access technology.

EF Core is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code that developers usually need to write.

Database Providers

The source for SQL Server, SQLite, and InMemory providers are included in this project. Additional providers are available. For a complete list, see https://docs.microsoft.com/ef/core/providers/.

Provider Package name Stable (master branch) Nightly (dev branch)
SQL Server Microsoft.EntityFrameworkCore.SqlServer NuGet MyGet
SQLite Microsoft.EntityFrameworkCore.SQLite NuGet MyGet
InMemory (for testing) Microsoft.EntityFrameworkCore.InMemory NuGet MyGet

Roadmap

For more details on the release schedule, see the Roadmap article in the wiki.