EntityFramework-Plus VS Dapper

Compare EntityFramework-Plus vs Dapper and see what are their differences.

EntityFramework-Plus

Entity Framework Plus extends your DbContext with must-haves features: Include Filter, Auditing, Caching, Query Future, Batch Delete, Batch Update, and more (by zzzprojects)

Dapper

Dapper - a simple object mapper for .Net [Moved to: https://github.com/DapperLib/Dapper] (by StackExchange)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
EntityFramework-Plus Dapper
4 9
2,184 13,651
1.3% -
4.1 5.1
about 1 month ago about 3 years ago
C# C#
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

EntityFramework-Plus

Posts with mentions or reviews of EntityFramework-Plus. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-31.

Dapper

Posts with mentions or reviews of Dapper. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-13.
  • Working with ListView in Windows Forms
    3 projects | dev.to | 13 Jan 2024
    Even those the old backend code to read from a database would work, the code was rewritten using Dapper. Had to add two column aliases in SQL SELECT statements and everything worked.
  • Import data from a database with Dapper and SpreadsheetLight to Excel in C#
    2 projects | dev.to | 6 Nov 2023
    In this article learn how to create Excel spreadsheet documents from reading data from two SQL-Server table from a modified version of Microsoft NorthWind database using NuGet package Dapper and SpreadSheetLight to create and populate the spreadsheet files.
  • Multiple Result Sets for SQL-Server (C#) including Dapper
    2 projects | dev.to | 2 Oct 2023
    Learn how to read reference table from SQL-Server using a single method. What is shown provides an efficient way to either use a connection, command objects to read data via a SqlDataReader for conventional work using methods from SqlClient and also Dapper which requires two lines of code to read data and one line of code to store data into list.
  • BREAKING!! NPM package ‘ua-parser-js’ with more than 7M weekly download is compromised
    32 projects | /r/programming | 22 Oct 2021
    https://www.nuget.org/packages/Newtonsoft.Json/ https://www.nuget.org/packages/AutoMapper/ https://www.nuget.org/packages/Dapper/ https://www.nuget.org/packages/FluentValidation/ https://www.nuget.org/packages/FluentAssertions/ https://www.nuget.org/packages/NUnit/ https://www.nuget.org/packages/xunit/ https://www.nuget.org/packages/YamlDotNet/ https://www.nuget.org/packages/Moq/ That is simply not true. Mature c# projects purposely maintain no downstream dependencies and is they do, it's to a major reputable lib. See for yourself - these are staple third party packages commonly used. Anything dependency starting with System or NETStandard is Microsoft maintained.
  • How to Build a Blazor CRUD Application with Dapper
    2 projects | dev.to | 10 Mar 2021
    In this blog post, we are going to discuss how to bind the Syncfusion Blazor DataGrid with a database using Dapper and perform CRUD operations. To demonstrate this, we are going to create a bug tracker database table in MS SQL Server and perform CRUD operations in that table in a Blazor server-side application.
  • A couple of questions about dotnet from a Java developer :)
    5 projects | /r/dotnet | 19 Feb 2021
    Entity Framework Core StackExchange/Dapper
  • Requests per second 12 requests per second – Realistic Python web frameworks
    17 projects | news.ycombinator.com | 18 Feb 2021
    Like there wouldn't be anything in between /s

    There are "simple ORMs" that only map results of SQL queries to objects. They do not provide a magic query API - which is the source of most problems. I don't do Python, but for .NET there is Dapper https://github.com/StackExchange/Dapper, you can have a look what I mean. You write the SQL query, explicitly execute it, the library maps the results of that query into objects (it's C#, so you have to declare the class. In Python I'd imagine it would create the object for you)

  • Why would I even bother using Dapper?
    1 project | /r/dotnet | 13 Feb 2021
    To add some differences: EF tracks object state in an instance of a context, Dapper does not. Dapper is strictly for object mapping (taking the output of a query and mapping it onto an object). This makes Dapper far easier to implement, versus EF’s DbContext configuration. Due to the lack of tracking and slimmer wrapping, it’s also faster. Things get really great when you have multiple complex objects and multiple result sets. It takes a lot of boring boilerplate code out of your code.
  • Plans for Entity Framework Core 6.0 revealed as Microsoft admits it is unlikely to match Dapper for performance
    4 projects | /r/dotnet | 21 Jan 2021
    Just take a look at this Dapper 2.0 feature that's been festering for months years.

What are some alternatives?

When comparing EntityFramework-Plus and Dapper you can also consider the following projects:

EFCore.BulkExtensions - Entity Framework EF Core efcore Bulk Batch Extensions with BulkCopy in .Net for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, MySQL, SQLite

LINQ to DB - Linq to database provider.

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

PetaPoco - Official PetaPoco, A tiny ORM-ish thing for your POCO's

Detached-Mapper - An ORM friendly mapper. Allows saving entire entity graphs. Heavily inspired in GraphDiff and AutoMapper.

MongoDB Repository pattern implementation

eShopOnWeb - Sample ASP.NET Core 8.0 reference application, powered by Microsoft, demonstrating a layered application architecture with monolithic deployment model. Download the eBook PDF from docs folder.

NPoco - Simple microORM that maps the results of a query onto a POCO object. Project based on Schotime's branch of PetaPoco

EFCoreSecondLevelCacheInterceptor - EF Core Second Level Cache Interceptor

NHibernate - NHibernate Object Relational Mapper