Skip to content
EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.
C# Other
  1. C# 99.1%
  2. Other 0.9%
Branch: master
Clone or download
dotnet-maestro Update dependencies from https://github.com/dotnet/arcade build 20200…
…216.1 (#19953)

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20116.1
Latest commit b19bfca Feb 17, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Update links for repo moves/renames Jan 8, 2020
benchmark Pin dependencies to 3.1.0 (for now) Dec 3, 2019
docs Update links for repo moves/renames Jan 8, 2020
eng Update dependencies from https://github.com/dotnet/arcade build 20200… Feb 17, 2020
src Removing quirk flags and merge cleanup Feb 15, 2020
test Removing quirk flags and merge cleanup Feb 15, 2020
tools Seal private nested classes to avoid unneeded virtual methods Nov 26, 2019
.editorconfig Just moving some stuff around Nov 2, 2019
.gitattributes Implement SqliteCommand.Prepare. Jul 21, 2017
.gitignore Query: Implement First/Single/Last OrDefault throwing behavior Aug 21, 2019
All.sln Link to Microsoft.Data.Sqlite docs Jan 6, 2020
All.sln.DotSettings Merge branch 'merge/release/3.1-to-master' of https://github.com/dotn… Nov 2, 2019
Directory.Build.props Pin dependencies to 3.1.0 (for now) Dec 3, 2019
Directory.Build.targets Pin dependencies to 3.1.0 (for now) Dec 3, 2019
EFCore.Cosmos.slnf Tweak solution filter files Aug 9, 2019
EFCore.Relational.slnf Tweak solution filter files Aug 9, 2019
EFCore.Runtime.slnf Remove annotations key when overriden explicitly Aug 29, 2019
EFCore.Sqlite.slnf SQLite SaveChanges: Enable non-rowid store-generated keys Aug 29, 2019
EFCore.Tools.slnf Tweak solution filter files Aug 9, 2019
EFCore.ruleset StyleCop and Jetbrains settings improvements Apr 10, 2019
EFCore.slnf Tweak solution filter files Aug 9, 2019
LICENSE.txt Fix license Mar 22, 2019
Microsoft.Data.Sqlite.slnf Link to Microsoft.Data.Sqlite docs Jan 6, 2020
NuGet.config Update dependencies from https://github.com/dotnet/arcade build 20200… Jan 20, 2020
README.md Update links for repo moves/renames Jan 8, 2020
activate.ps1 Add activate scripts Feb 27, 2019
activate.sh Add activate scripts Feb 27, 2019
azure-pipelines.yml Fix bad merge Jan 30, 2020
build.cmd build.cmd: Avoid confusing the cmd argument parser with too many quotes Sep 16, 2019
build.sh Build using Arcade Dec 19, 2018
global.json Update dependencies from https://github.com/dotnet/arcade build 20200… Feb 17, 2020
restore.cmd build.cmd: Avoid confusing the cmd argument parser with too many quotes Sep 16, 2019
restore.sh Make some scripts executable Mar 18, 2019
startvs.cmd Update solutions to VS 2019 Feb 6, 2019
test.cmd build.cmd: Avoid confusing the cmd argument parser with too many quotes Sep 16, 2019
test.sh Make some scripts executable Mar 18, 2019

README.md

Repository

build status test results

This repository is home to the following .NET Foundation projects. These projects are maintained by Microsoft and licensed under the Apache License, Version 2.0.

Entity Framework Core

latest version preview version downloads

EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations. EF Core works with SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MySQL, PostgreSQL, and other databases through a provider plugin API.

Installation

EF Core is available on NuGet. Install the provider package corresponding to your target database. See the list of providers in the docs for additional databases.

dotnet add package Microsoft.EntityFrameworkCore.SqlServer
dotnet add package Microsoft.EntityFrameworkCore.Sqlite
dotnet add package Microsoft.EntityFrameworkCore.Cosmos

Use the --version option to specify a preview version to install.

Use the daily builds to verify bug fixes and provide early feedback.

Usage

The following code demonstrates basic usage of EF Core. For a full tutorial configuring the DbContext, defining the model, and creating the database, see getting started in the docs.

using (var db = new BloggingContext())
{
    // Inserting data into the database
    db.Add(new Blog { Url = "http://blogs.msdn.com/adonet" });
    db.SaveChanges();

    // Querying
    var blog = db.Blogs
        .OrderBy(b => b.BlogId)
        .First();

    // Updating
    blog.Url = "https://devblogs.microsoft.com/dotnet";
    blog.Posts.Add(
        new Post
        {
            Title = "Hello World",
            Content = "I wrote an app using EF Core!"
        });
    db.SaveChanges();

    // Deleting
    db.Remove(blog);
    db.SaveChanges();
}

Microsoft.Data.Sqlite

latest version preview version downloads

Microsoft.Data.Sqlite is a lightweight ADO.NET provider for SQLite. The EF Core provider for SQLite is built on top of this library. However, it can also be used independently or with other data access libraries.

Installation

The latest stable version is available on NuGet.

dotnet add package Microsoft.Data.Sqlite

Use the --version option to specify a preview version to install.

Use the daily builds to verify bug fixes and provide early feedback.

Usage

This library implements the common ADO.NET abstractions for connections, commands, data readers, and so on. For more information, see Microsoft.Data.Sqlite on Microsoft Docs.

using (var connection = new SqliteConnection("Data Source=Blogs.db"))
{
    connection.Open();

    var command = connection.CreateCommand();
    command.CommandText = "SELECT Url FROM Blogs";

    using (var reader = command.ExecuteReader())
    {
        while (reader.Read())
        {
            var url = reader.GetString(0);
        }
    }
}

Getting support

If you have a specific question about using these projects, we encourage you to ask it on Stack Overflow. If you encounter a bug or would like to request a feature, submit an issue. For more details, see getting support.

Contributing

If you're interested in contributing to these projects, see contributing.

See also

You can’t perform that action at this time.