dotnet/efcore

EF Core is a modern object-database mapper for .NET. It supports LINQ queries, change tracking, updates, and schema migrations.

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 7 minutes ago
Added to GitGenius on September 4th, 2026
Created on January 23rd, 2014
Open Issues & Pull Requests: 2,376 (+0)
GitHub issues: Enabled
Number of forks: 3,414
Total Stargazers: 14,790 (+0)
Total Subscribers: 860 (+0)

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 2,323
New in 7 days: 8
Closed in 7 days: 9
Avg open age: 1,626 days
Stale 30+ days: 2,244
Stale 90+ days: 2,079

Recent activity

Opened in 7 days: 7
Closed in 7 days: 9
Comments in 7 days: 6
Events in 7 days: 35

Top labels

  • customer-reported (6,740)
  • area-query (2,402)
  • area-model-building (878)
  • area-perf (568)
  • area-test (543)
  • area-migrations (474)
  • regression (399)
  • area-cosmos (361)

Detailed Description

Entity Framework Core is an object-relational mapper for .NET that enables developers to work with databases using LINQ queries and strongly-typed C# objects instead of writing raw SQL.

The tool solves the impedance mismatch between object-oriented code and relational databases by mapping database tables to .NET classes and providing a query interface through LINQ. It handles change tracking to monitor modifications to objects, manages updates back to the database, and supports schema migrations to evolve database structure over time. The approach works through a provider plugin architecture, allowing the same API to target multiple database systems including SQL Server, Azure SQL Database, SQLite, Azure Cosmos DB, MariaDB, MySQL, and PostgreSQL.

Developers building .NET applications that need database persistence should consider this tool if they prefer working with objects and LINQ rather than writing SQL directly. It suits projects ranging from small applications using SQLite to large enterprise systems on SQL Server or cloud databases. The repository also includes Microsoft.Data.Sqlite, a lightweight ADO.NET provider for SQLite that can be used independently or with other data access libraries if you need lower-level database access without the full ORM abstraction.

The project maintains an active development cadence with daily builds available alongside stable releases, allowing early access to new features and bug fixes. Community contributions are actively welcomed through pull requests for bug fixes, enhancements, and documentation. The tool is maintained by Microsoft under the .NET Foundation and licensed under the MIT License, with support available through Stack Overflow for usage questions and GitHub issues for bug reports and feature requests.