Dapper.AmbientContext Save

Ambient context implementation for Dapper.NET

Project README

Dapper.AmbientContext

Build status NuGet Pre Release

Ambient context implementation for Dapper.

Ambient Context is a little-known pattern which is frequently used by the .NET framework to address cross-cutting concerns such as security (Thread.CurrentPrincipal), logging (Trace & TraceListeners), HttpContext and etc. The general idea is that the application sets up a context, typically at an entry-point of an operation or web request, which becomes available to the rest of the system via a static property or method.

Dapper.AmbientContext uses a similar approach to treat the database connection and transaction as resources which are seamlessly shared between various data access components. This pattern works really well with the service layer which consumes multiple data access repositories, commands and queries to perform a variety of database tasks within the same transaction.

More information in the wiki.

Installation

Install Dapper.AmbientContext with NuGet

Install-Package Dapper.AmbientContext
Open Source Agenda is not affiliated with "Dapper.AmbientContext" Project. README Source: sakopov/Dapper.AmbientContext
Stars
32
Open Issues
2
Last Commit
3 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating