Delly.DBunny.SqlServer 2026.5.7

dotnet add package Delly.DBunny.SqlServer --version 2026.5.7
                    
NuGet\Install-Package Delly.DBunny.SqlServer -Version 2026.5.7
                    
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="Delly.DBunny.SqlServer" Version="2026.5.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Delly.DBunny.SqlServer" Version="2026.5.7" />
                    
Directory.Packages.props
<PackageReference Include="Delly.DBunny.SqlServer" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Delly.DBunny.SqlServer --version 2026.5.7
                    
#r "nuget: Delly.DBunny.SqlServer, 2026.5.7"
                    
#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.
#:package Delly.DBunny.SqlServer@2026.5.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Delly.DBunny.SqlServer&version=2026.5.7
                    
Install as a Cake Addin
#tool nuget:?package=Delly.DBunny.SqlServer&version=2026.5.7
                    
Install as a Cake Tool

Delly.DBunny.SqlServer

License .NET AOT Compatible

SQL Server provider implementation for DBunny. Also compatible with Azure SQL Database and Azure SQL Managed Instance.

Installation

dotnet add package Delly.DBunny.SqlServer

Quick Start

using Delly.DBunny;
using Delly.DBunny.SqlServer;
using Delly.DBunny.Sql.Extension;
using Delly.DBunny.Connecting.Extension;
using System.Data.Common;

// Create connection using builder
var connectionDefine = new SqlServerConnectionDefine()
    .WithServer("localhost")
    .WithDatabase("mydb")
    .WithUserId("sa")
    .WithPassword("your_password")
    .WithTrustServerCertificate(true);

var descriptor = connectionDefine.GetDbConnectionDescriptor(
    SqlServerConnectionDefine.DATABASE_TYPE, "Default");

var provider = new SqlServerProvider();
using var connection = provider.GetDbConnection(descriptor.ConnectionString);
connection.Open();

// Create a table in dbo schema
var columnDescriptors = new List<DbColumnDesciptor>
{
    new DbColumnDesciptor { ColumnName = "Id", ColumnType = "INT", PrimaryKeyFlag = true, NullableFlag = false },
    new DbColumnDesciptor { ColumnName = "Name", ColumnType = "NVARCHAR(100)", PrimaryKeyFlag = false, NullableFlag = false },
    new DbColumnDesciptor { ColumnName = "Age", ColumnType = "INT", PrimaryKeyFlag = false, NullableFlag = true }
};
var createTableSql = provider.SqlProvider.CreateTable("dbo", "Users", columnDescriptors);

using var createCommand = provider.GetDbCommand(connection);
createCommand.CommandText = createTableSql.Sql;
await createCommand.ExecuteNonQueryAsync();

// Insert data
var insertSql = new Sqled("INSERT INTO [dbo].[Users] (Name, Age) VALUES (@name, @age)")
    .Set("name", "John Doe")
    .Set("age", 30);

using var insertCommand = provider.GetDbCommand(connection);
insertCommand.CommandText = insertSql.Sql;
provider.SetParameters(insertCommand, insertSql.Parameters);
await insertCommand.ExecuteNonQueryAsync();

// Query data
var selectSql = new Sqled("SELECT * FROM [dbo].[Users] WHERE Age > @minAge")
    .Set("minAge", 18);

await provider.ReadAsync(connection, selectSql, async reader =>
{
    while (await reader.ReadAsync())
    {
        var id = reader["Id"];
        var name = reader["Name"];
        var age = reader["Age"];
        Console.WriteLine($"Id: {id}, Name: {name}, Age: {age}");
    }
});

Connection Builder

Use the fluent builder for connection configuration:

using Delly.DBunny.SqlServer;
using Delly.DBunny.Connecting.Extension;

var connectionDefine = new SqlServerConnectionDefine()
    .WithServer("localhost")
    .WithDatabase("mydb")
    .WithUserId("sa")
    .WithPassword("your_password")
    .WithTrustServerCertificate(true)
    .WithEncrypt(true)
    .WithConnectionTimeout(30)
    .WithCommandTimeout(600)
    .WithPooling(true)
    .WithMinPoolSize(0)
    .WithMaxPoolSize(100)
    .WithMultipleActiveResultSets(true)
    .WithPacketSize(8000)
    .WithApplicationName("MyApp");

var descriptor = connectionDefine.GetDbConnectionDescriptor(
    SqlServerConnectionDefine.DATABASE_TYPE, "Default");

Connection Parameters

Parameter Default Description
Server / Data Source localhost SQL Server server host
Database / Initial Catalog - Database name
User Id / User - Username
Password / Pwd - Password
Trust Server Certificate True Trust server certificate
Encrypt True Encrypt connection
Connection Timeout 30 Connection timeout in seconds
Command Timeout 600 Command timeout in seconds
Pooling True Enable connection pooling
Min Pool Size 0 Minimum pool size
Max Pool Size 100 Maximum pool size
Multiple Active Result Sets True Enable MARS
Packet Size 8000 Network packet size in bytes
Application Name - Application name

SQL Server Features

  • Database Layer: SQL Server uses databases with full support
  • Schema Layer: SQL Server uses schemas (default: dbo)
  • Name Quoting: Uses square brackets [name]
  • Parameter Prefix: @
  • Identity Columns: Uses IDENTITY(1,1) for auto-increment
  • Type Mapping:
    • Boolean → BIT
    • Byte, SByte → TINYINT
    • Int16, UInt16 → SMALLINT
    • Int32, UInt32 → INT
    • Int64, UInt64 → BIGINT
    • Single → REAL
    • Double → FLOAT
    • Decimal → DECIMAL
    • DateTime → DATETIME
    • String (<=4000 chars) → NVARCHAR
    • String (>4000 chars) → NVARCHAR(MAX)

Schema Operations

SQL Server supports schema creation and management:

// Create a schema
var createSchemaSql = provider.SqlProvider.CreateSchema("myschema", null!);
await ExecuteNonQueryAsync(connection, createSchemaSql);

// Get all schemas
var getSchemasSql = provider.SqlProvider.GetSchemas();
await provider.ReadAsync(connection, getSchemasSql, async reader =>
{
    while (await reader.ReadAsync())
    {
        var schemaName = reader.GetString(0);
        Console.WriteLine($"Schema: {schemaName}");
    }
});

// Drop a schema
var dropSchemaSql = provider.SqlProvider.DropSchema("myschema");
await ExecuteNonQueryAsync(connection, dropSchemaSql);

Azure SQL Database

For Azure SQL Database, use the server name in the format:

connectionDefine.WithServer("myserver.database.windows.net")
    .WithDatabase("mydb")
    .WithUserId("myuser")
    .WithPassword("mypassword")
    .WithTrustServerCertificate(false) // Azure uses real certificates
    .WithEncrypt(true);

Multiple Active Result Sets (MARS)

MARS allows multiple active result sets on a single connection:

// MARS is enabled by default
connectionDefine.WithMultipleActiveResultSets(true);

With MARS, you can read from multiple DataReaders on the same connection simultaneously.

Trust Server Certificate

For development environments with self-signed certificates:

connectionDefine.WithTrustServerCertificate(true);

For production or Azure SQL:

connectionDefine.WithTrustServerCertificate(false);

Dependencies

License

MIT License

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.5.7 94 5/19/2026
2026.5.6 97 5/19/2026
2026.5.5 97 5/18/2026
2026.5.4 95 5/18/2026
2026.5.3 94 5/18/2026