Skip to main content
Dapper.FastCrud package icon

Dapper.FastCrud

Fast Dapper CRUD extensions added to the IDbConnection for convenience and a less error prone experience. This library is 2x faster than Dapper.SimpleCRUD. For Dapper constructs in general, it is recommended to use Visual Studio 2015 for features such as nameof and string interpolation but that's not a requirement. The package contains .NET 4.5 and 4.6 DLLs, one of which will be installed based on the target framework in your project. For .NET 4.5, the code contains the polyfills for the missing FormattableString class, which is required when targetting that framework version and using string interpolation with the C# 6 compiler in VS 2015. Features: ---------- - Support for LocalDb, Ms Sql Server, MySql, SqLite - Entities having composite primary keys are supported - All the CRUD methods accept a transaction and a command timeout - Fast pre-computed entity queries - A generic T4 template is also provided for convenience. Entity domain partitioning and generation can be achieved via separate template configurations. Existing POCO entities are also supported which can be decorated with attributes such as Table, Key and DatabaseGenerated. Column name overrides are not supported and not recommended. As you'll end up writing more complex SQL queries, outside of the domain of this library, you'll want to use the nameof operator as much as possible. Examples of usage: ------------------- - DapperExtensions.Dialect = SqlDialect.MsSql|MySql|SqLite - dbConnection.Insert(newEntity); - dbConnection.Get() - dbConnection.Get(new Entity() {Id = 10}); - dbConnection.Update(updatedEntity); - dbConnection.Delete(entity) - dbConnection.GetTableName<Entity>() - dbConnection.Find<Entity>( whereClause:

quot;{nameof(Entity.FirstName)}=@FirstNameParam", orderClause:
quot;{nameof(Entity.LastName)} DESC", skipRowsCount:10, limitRowsCount:20, queryParameters: new {FirstNameParam: "John"}); This is where the power of the C# 6 compiler comes into play, and leaves no chance to mistypings or to problems arising from db entity refactorings. More details and benchmarks are available on the project site.

Total Downloads
3.6M
3,592,563
Published
May 21, 2015
Latest stable version

Install

.NET CLI
dotnet add package Dapper.FastCrud --version 1.1.0
Package Manager Console
Install-Package Dapper.FastCrud -Version 1.1.0
PackageReference
<PackageReference Include="Dapper.FastCrud" Version="1.1.0" />

Frameworks

No framework metadata available.

Dependencies

[1.38.0, )

Adoption guide

Assess this package against its supported frameworks, license, maintenance signals and dependency graph before making it a project standard.

No SPDX license expression is published. Review the license text and your organisation's policy before redistribution.

No target framework metadata is available. Confirm compatibility in a representative project before standardising on this package.

How to read this guidance

Sources: published NuGet v3 registry metadata and explicit NuBrowse editorial guides. Refresh: package metadata is refreshed from NuGet when the page loads. Limit: this is not a security, legal or compatibility guarantee; validate the selected version in your project.

Useful next steps

Move from package metadata to a concrete selection or review workflow.