Dapper VS MediatR

Compare Dapper vs MediatR and see what are their differences.

Dapper

Dapper - a simple object mapper for .Net [Moved to: https://github.com/DapperLib/Dapper] (by StackExchange)

MediatR

Simple, unambitious mediator implementation in .NET (by jbogard)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Dapper MediatR
9 53
13,651 10,593
- -
5.1 6.2
about 3 years ago 9 days ago
C# C#
GNU General Public License v3.0 or later Apache License 2.0
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.

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.

MediatR

Posts with mentions or reviews of MediatR. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-27.
  • The Monad Invasion - Part 2: Monads in Action!
    3 projects | dev.to | 27 Feb 2024
    You probably noticed that .SetName() returns a Either. You may have come across Unit in libraries like MediatR or Language-Ext. It's a simple construct representing a type with only one possible value. We use it as a placeholder for operations that do not return a value but may return another state. In our example, .SetName() is a Command that does not return a value but may fail. Therefore, the monad Either carries two possible states: Right (without value) or Left (with an Error).
  • How small is the smallest .NET Hello World binary?
    8 projects | news.ycombinator.com | 9 Jul 2023
    The widely used MediatR library[0] could be used to do that as well, just FYI.

    [0]: https://github.com/jbogard/MediatR

  • Cannot use disposed service
    1 project | /r/dotnet | 4 Jul 2023
  • Exception handling between controller and service
    6 projects | /r/dotnet | 1 Jul 2023
  • CQRS: How to handle duplicate queries inside a CommandHandler
    1 project | /r/dotnetcore | 26 Jun 2023
    Hope this GH issue shed some light on why injecting handler inside another handler is not good https://github.com/jbogard/MediatR/issues/400
  • Is MediatR the only real CQRS solution for .Net?
    4 projects | /r/dotnet | 6 May 2023
    From: https://github.com/jbogard/MediatR
  • Easiest way to build the fastest REST API in C# and .NET 7 using CQRS
    4 projects | dev.to | 25 Apr 2023
    I gave it a go and I was impressed how easy and fast it was to set it all up. Since I'm not a big fan of REPR pattern almost all my projects are using CQRS pattern with a help of MediatR ](https://github.com/jbogard/MediatR) I immediately started going over something similar that Fast Endpoints offer which is a command bus.
  • MVVM Question: How do you manage the interaction between Model and ViewModel?
    4 projects | /r/csharp | 3 Apr 2023
    I'd use a dedicated event bus based on Reactive Extensions or MediatR to publish domain events from your domain services. This probably doesn't solve all your ViewModel update problems as is, maybe you need to revise the granularity (maybe you can have smaller ViewModels that refresh single property that exposes the Model) and lifespan (sometimes you can create a ViewModel, make it perform it's task and then discard it completely) of your ViewModels.
  • Async Methods after setting a property.
    2 projects | /r/csharp | 16 Mar 2023
    If you're finding yourself in a situation where you need to turn this behavior into a pattern because there are a lot of View Models that need to execute async business logic in response to some changes, I'd go with something like MediatR or Reactive Extensions. The idea is, again, that some other, probably business-level, component listens to changes in a decoupled way (that means it doesn't subscribe directly to your View Model, but to an event bus instead). View Model publishes change events to the event bus, and business-component reacts to these events by executing the business logic.
  • I don't get why I should use Redux
    6 projects | /r/webdev | 9 Mar 2023
    What people really want is to design the logic of an app independently from the component hierarchy. That means you need to store state somewhere other than the components and you need to dispatch events that are not attached to the component hierarchy. Also, a one way data flow has well known benefits as described by things like CQRS, RabbitMQ, and MediatR.

What are some alternatives?

When comparing Dapper and MediatR you can also consider the following projects:

LINQ to DB - Linq to database provider.

Mediator.Net - A simple mediator for .Net for sending command, publishing event and request response with pipelines supported

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

RabbitMQ - Open source RabbitMQ: core server and tier 1 (built-in) plugins

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

Polly - Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.

MongoDB Repository pattern implementation

Brighter - A framework for building messaging apps with .NET and C#.

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

ApiEndpoints - A project for supporting API Endpoints in ASP.NET Core web applications.

NHibernate - NHibernate Object Relational Mapper

FluentValidation - A popular .NET validation library for building strongly-typed validation rules.