Dapper.SqlGenerator 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Dapper.SqlGenerator --version 1.0.5
NuGet\Install-Package Dapper.SqlGenerator -Version 1.0.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dapper.SqlGenerator" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Dapper.SqlGenerator --version 1.0.5
#r "nuget: Dapper.SqlGenerator, 1.0.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Dapper.SqlGenerator as a Cake Addin
#addin nuget:?package=Dapper.SqlGenerator&version=1.0.5

// Install Dapper.SqlGenerator as a Cake Tool
#tool nuget:?package=Dapper.SqlGenerator&version=1.0.5

Dapper.SqlGenerator

Database agnostic SQL code generation for Dapper without POCO attributes

Usage

Documentation is not complete, check unit tests for more examples.

Project will aim to eventually be fully compatible with Entity Framework Core schema definition.

One of the project aims is performance - generated queries are cached as well as sets of columns.

Currently only NpgsqlConnection and SqlConnection are supported but writing a custom adapter is very simple and requires only implementing ISqlAdapter interface and registering it.

Simplest use case does not require any initialization - just use the following methods on the IDbConnection:

using Dapper.SqlGenerator;

string insertSql = connection.Sql().Insert<Product>();
string insertAndReturnSql = connection.Sql().InsertReturn<Product>();
string updateSql = connection.Sql().Update<Product>();
string deleteSql = connection.Sql().Delete<TestProduct>();
string upsertMergeSql = connection.Sql().Merge<Product>("unique_order");

string tableName = connection.Sql().Table<Order>();

IList<PropertyBuilder> someKeyColumnDefinitions = connection.Sql().GetProperties<Order>(ColumnSelection.Keys, 'main-keys');
string commaSeparatedNonKeyColumns = connection.Sql().GetColumns<Order>(ColumnSelection.NonKeys);
string keysAtQueryParams = connection.Sql().GetParams<Ordeer>(ColumnSelection.Keys);
string columnEqualParams = connection.Sql().GetColumnEqualParams<Order>(ColumnSelection.NonKeys);

On program initialization special naming or key column rules can be defined which will be handled by SqlGenerator.

Example for 2 entities:

DapperSqlGenerator.Configure(connectionString)
    .HasDefaultKeyColumn("Id", o => o.HasColumnName("id"))
    .Entity<TestProduct>(e =>
    {
        e.Property(x => x.Kind)
            .HasColumnName("Type");
        e.Property(x => x.Name)
            .Ignore();
        e.Property(x => x.Content, typeof(PostgresAdapter))
            .HasColumnType("json");
        e.Property(x => x.Value, typeof(PostgresAdapter))
            .HasComputedColumnSql("\"Id\" + 1");
        e.Property(x => x.Value, typeof(SqlServerAdapter))
            .HasComputedColumnSql("[Id] + 1");
    })
    .Entity<TestOrder>(e =>
    {
        e.ToTable("orders");
        e.HasKey(c => c.OrderId);
        e.Property(c => c.OrderId)
            .HasColumnName("Id");
        e.HasColumnSet("unique_order", x => x.OrderId, x => x.ProductId);
    });

SqlGenerator can pick the correct database adapter based on the IDbConnection type or even optionally by it's connection string to handle selection of schema.

There are several table and column name converters available, all written for with realisting scenarios so that there should be no need to use ToTable or HasColumnName specialzations very often. All can be joined together in any order to produce the expected outcome.

  • CamelCaseNameConverter - PropertyName becomes propertyName
  • LowerCaseNameConverter - PropertyName becomes propertyname
  • UpperCaseNameConverter - PropertyName becomes PROPERTYNAME
  • SnakeCaseNameConverter - PropertyNAME becomes Property_NAME
  • PluralNameConverter - Grape becomes Grapes

To register existing or custom adapter, use AdapterFactory:

AdapterFactory.Register(typeof(NpgsqlConnection), new PostgresAdapter(new INameConverter[] { new SnakeCaseNameConverter(), new LowerCaseNameConverter(), new PluralNameConverter() }, new INameConverter[] { new LowerCaseNameConverter() });
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Dapper.SqlGenerator:

Package Downloads
Dapper.SqlGenerator.Async

Runs Dapper queries using SqlGenerator for generating and caching SQL, does not have any dependencies other than Dapper and generates modern SQL depending on a connection type while being fully customizable

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 1,036 11/6/2020
1.1.1 524 11/3/2020
1.1.0 663 11/1/2020
1.0.7 409 10/24/2020
1.0.6 444 10/24/2020
1.0.5 420 10/17/2020
1.0.4 384 10/15/2020
1.0.3 399 10/15/2020
1.0.2 409 10/15/2020
1.0.1 390 10/14/2020
1.0.0 396 10/14/2020