Found 2,052 packages
A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc. Major Sponsor: Dapper Plus from ZZZ Projects.
The official collection of get, insert, update and delete helpers for Dapper.net. Also handles lists of entities and optional "dirty" tracking of interface-based entities.
The Dapper SqlBuilder component, for building SQL queries dynamically.
Simple API to fluently map POCO properties to database columns when using Dapper.
Simple Get, GetList, GetListPaged, Insert, Update, Delete, DeleteList, and RecordCount extensions for Dapper. Uses smart defaults for attribute free classes but can be overridden as needed. By default uses Id column as the primary key but this can be overridden with an attribute By default queries the table matching the class name but this can be overridden with an attribute By default queries the column matching the property name but this can be overridden with an attribute - Supports SQL Server, PostgreSQL, and MySQL - Includes async methods - Supports .Net Core
You hate verbatim SQL queries with zero type safety for your code but you love the speed? Dapper.FastCRUD is built around essential features of the C# 6 / VB that have finally raised the simplicity of raw SQL constructs to acceptable maintenance levels. These features leave no chance to mistypings or problems arising from db entity refactorings. Visual Studio 2019 or later is recommended.
Dapper is a great tool if you want to write database-agnostic code. However, sometimes you need to access functionality that is provider-specific. This assembly adds support for writing Oracle-specific SQL, that supports all dbtypes used by the Oracle managed provider on a parameter, supports setting various properties on the command(LOBFetchSize, ArrayBindCount, BindByName), as well as setting CollectionType on the parameter. Using this package, you can now run stored procedures that returns RefCursor, or use array bind count to execute a sql statements with a array of parameters.
Dapper.FluentMap extension for Dommel support.
IDbTransaction extension methods for Dapper: A high performance Micro-ORM supporting SQL Server, MySQL, Sqlite, SqlCE, Firebird etc.. --------------------------------------- This library is sponsored by ZZZ Projects: https://dapper-plus.net/ https://eval-expression.net/ https://entityframework-extensions.net/ ---------------------------------------
Extension on the Dynamic Parameters of Dapper to make life a little easier when passing parameters to Dapper executions.
A dapper extension library. Support MySQL,SQL Server,PostgreSQL,SQLite,Oracle and ODBC, Support cache.
Dapper.Mapper is an extension to Dapper multi mapping which figures out the relationships between the returned objects and automatically assigns them. Instead of explicitly writing this: 'var employee = connection.Query<Employee, Department, Employee>(sql, (employee, department) => { employee.Department = department; return employee; });' Dapper.Mapper allows you to write this: 'var employee = connection.Query<Employee, Department>(sql);'.
A dynamic generator for Dapper How to use? https://github.com/kvnallen/Dapper.DynamicReportGenerator
Fast bulk insert extensions for Dapper.
A couple helper classes to make using TVP parameters with Dapper easier.
Alternative database first framework to Entity Framework using Dapper
Integrates Dapper with the ASP.Net Core logging system
Simple extension to Dapper to allow arbitrary column to property mapping.
CRUD extension methods for Dapper