Dapper.FastCrud
Simple 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. Examples of usage: ------------------- - 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", 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. Features: ---------- - Support for LocalDb and Ms Sql Server (more coming soon) - Entities having composite primary keys are supported - All the CRUD methods accept a transaction and a command timeout - Fast pre-computed entity mappings - A generic T4 template is also provided for convenience. Isolated entity generation 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.Install
dotnet add package Dapper.FastCrud --version 1.0.1
Install-Package Dapper.FastCrud -Version 1.0.1
<PackageReference Include="Dapper.FastCrud" Version="1.0.1" />
Frameworks
No framework metadata available.
Dependencies
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.