Unleasharp.DB.MSSQL 1.6.0

dotnet add package Unleasharp.DB.MSSQL --version 1.6.0
                    
NuGet\Install-Package Unleasharp.DB.MSSQL -Version 1.6.0
                    
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="Unleasharp.DB.MSSQL" Version="1.6.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Unleasharp.DB.MSSQL" Version="1.6.0" />
                    
Directory.Packages.props
<PackageReference Include="Unleasharp.DB.MSSQL" />
                    
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 Unleasharp.DB.MSSQL --version 1.6.0
                    
#r "nuget: Unleasharp.DB.MSSQL, 1.6.0"
                    
#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 Unleasharp.DB.MSSQL@1.6.0
                    
#: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=Unleasharp.DB.MSSQL&version=1.6.0
                    
Install as a Cake Addin
#tool nuget:?package=Unleasharp.DB.MSSQL&version=1.6.0
                    
Install as a Cake Tool

📊 Unleasharp.DB.MSSQL

NuGet version (Unleasharp.DB.MSSQL) GitHub Wiki

Unleasharp.DB.MSSQL

Microsoft SQL Server implementation of Unleasharp.DB.Base. This repository provides a MSSQL-specific implementation that leverages the base abstraction layer for common database operations.

📦 Installation

Install the NuGet package using one of the following methods:

Package Manager Console

Install-Package Unleasharp.DB.MSSQL

.NET CLI

dotnet add package Unleasharp.DB.MSSQL

PackageReference (Manual)

<PackageReference Include="Unleasharp.DB.MSSQL" Version="1.6.0" />

🎯 Features

  • MSSQL-Specific Query Rendering: Custom query building and rendering tailored for MSSQL
  • Connection Management: Robust connection handling through ConnectorManager
  • Query Builder Integration: Seamless integration with the base QueryBuilder
  • Schema Definition Support: Full support for table and column attributes

🚀 Kickstart

var db  = new ConnectorManager("Server=localhost;Database=unleasharp;User Id=unleasharp;Password=unleasharp;")
var row = db.QueryBuilder().Build(query => query
    .From<ExampleTable>()
    .OrderBy<ExampleTable>(row => row.Id, OrderDirection.DESC)
    .Limit(1)
    .Select()
).FirstOrDefault<ExampleTable>();

📖 Documentation Resources

📦 Dependencies

📋 Version Compatibility

This library targets .NET 8.0 and later versions. For specific version requirements, please check the package dependencies.

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.


For more information about Unleasharp.DB.Base, visit: Unleasharp.DB.Base

Product Compatible and additional computed target framework versions.
.NET 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. 
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
1.6.0 22 9/3/2025
1.5.5 50 9/1/2025
1.5.3 62 8/31/2025
1.5.2 150 8/30/2025
1.5.0 169 8/28/2025
1.4.1 171 8/28/2025