Dapper.Extensions icon indicating copy to clipboard operation
Dapper.Extensions copied to clipboard

A dapper extension library. Support MySql,SQL Server,PostgreSql,Oracle and ODBC.

Results 1 Dapper.Extensions issues
Sort by recently updated
recently updated
newest added

As of .NET 8 you can now register services using keys. ```c# services.AddKeyedSingleton("memory"); services.AddKeyedSingleton("queue"); ``` ```c# public class ExampleService { public ExampleService( [FromKeyedServices("queue")] IMessageWriter writer) { // Omitted for brevity......