Microsoft.Data.SqlClient 7.0.0

Microsoft.Data.SqlClient

NuGet NuGet Downloads

Description

Microsoft.Data.SqlClient is the official .NET data provider for Microsoft SQL Server and Azure SQL databases. It provides access to SQL Server and encapsulates database-specific protocols, including Tabular Data Stream (TDS).

This library grew from a union of the two System.Data.SqlClient components which live independently in .NET and .NET Framework. Going forward, support for new SQL Server and Azure SQL features will only be implemented in Microsoft.Data.SqlClient.

Supportability

This package supports:

  • .NET Framework 4.6.2+
  • .NET 8.0+

Installation

Install the package via NuGet:

dotnet add package Microsoft.Data.SqlClient

Or via the Package Manager Console:

Install-Package Microsoft.Data.SqlClient

Getting Started

Basic Connection

using Microsoft.Data.SqlClient;

var connectionString = "Server=myserver;Database=mydb;Integrated Security=true;";

using var connection = new SqlConnection(connectionString);
await connection.OpenAsync();

Console.WriteLine("Connected successfully!");

Connecting to Azure

Starting with v7.0, to use Entra ID authentication modes (such as Active Directory Default, Active Directory Managed Identity, Active Directory Interactive, etc.) via connection string keywords, install the Microsoft.Data.SqlClient.Extensions.Azure extension package via NuGet:

dotnet add package Microsoft.Data.SqlClient.Extensions.Azure

Or via the Package Manager Console:

Install-Package Microsoft.Data.SqlClient.Extensions.Azure

This package provides the ActiveDirectoryAuthenticationProvider, which integrates with Azure.Identity to handle token acquisition, caching, and credential management.

With this package reference, you can continue to use Entra ID authentication modes directly in your connection string:

// Active Directory Default — uses DefaultAzureCredential (Managed Identity, Azure CLI, Visual Studio, etc.)
var connectionString = "Server=myserver.database.windows.net;Database=mydb;Authentication=Active Directory Default;";

using var connection = new SqlConnection(connectionString);
await connection.OpenAsync();

Execute a Query

using Microsoft.Data.SqlClient;

var connectionString = "Server=myserver;Database=mydb;Integrated Security=true;";

using var connection = new SqlConnection(connectionString);
await connection.OpenAsync();

using var command = new SqlCommand("SELECT Id, Name FROM Customers", connection);
using var reader = await command.ExecuteReaderAsync();

while (await reader.ReadAsync())
{
    Console.WriteLine($"Id: {reader.GetInt32(0)}, Name: {reader.GetString(1)}");
}

Parameterized Query

using Microsoft.Data.SqlClient;

var connectionString = "Server=myserver;Database=mydb;Integrated Security=true;";

using var connection = new SqlConnection(connectionString);
await connection.OpenAsync();

using var command = new SqlCommand("SELECT * FROM Customers WHERE Id = @id", connection);
command.Parameters.AddWithValue("@id", customerId);

using var reader = await command.ExecuteReaderAsync();
// Process results...

Using Transactions

using Microsoft.Data.SqlClient;

using var connection = new SqlConnection(connectionString);
await connection.OpenAsync();

using var transaction = connection.BeginTransaction();

try
{
    using var command = new SqlCommand("INSERT INTO Orders (CustomerId, Total) VALUES (@customerId, @total)", connection, transaction);
    command.Parameters.AddWithValue("@customerId", customerId);
    command.Parameters.AddWithValue("@total", orderTotal);
    
    await command.ExecuteNonQueryAsync();
    await transaction.CommitAsync();
}
catch
{
    await transaction.RollbackAsync();
    throw;
}

Key Features

Feature Description
Cross-Platform Runs on Windows, Linux, and macOS
Entra ID Authentication Multiple Entra ID authentication modes
Always Encrypted Client-side encryption for sensitive data
Connection Pooling Efficient connection management
TLS 1.3 Support Enhanced security with strict encryption mode
MARS Multiple Active Result Sets on a single connection
Async Programming Full async/await support
SqlBatch Batch multiple commands for improved performance
JSON/Vector Support Native support for JSON and Vector data types (SQL Server 2025+)

Commonly Used Types

Microsoft.Data.SqlClient.SqlConnection
Microsoft.Data.SqlClient.SqlCommand
Microsoft.Data.SqlClient.SqlDataReader
Microsoft.Data.SqlClient.SqlParameter
Microsoft.Data.SqlClient.SqlTransaction
Microsoft.Data.SqlClient.SqlException
Microsoft.Data.SqlClient.SqlParameterCollection
Microsoft.Data.SqlClient.SqlClientFactory
Microsoft.Data.SqlClient.SqlBulkCopy
Microsoft.Data.SqlClient.SqlConnectionStringBuilder

Authentication Methods

Method Connection String
SQL Server Authentication User ID=user;Password=pass;
Windows Authentication Integrated Security=true;
Entra ID Password (deprecated) Authentication=Active Directory Password;User ID=user;Password=pass;
Entra ID Integrated Authentication=Active Directory Integrated;
Entra ID Interactive Authentication=Active Directory Interactive;
Entra ID Managed Identity Authentication=Active Directory Managed Identity;
Entra ID Service Principal Authentication=Active Directory Service Principal;User ID=clientId;Password=clientSecret;
Entra ID Default Authentication=Active Directory Default;
Entra ID Workload Identity Authentication=Active Directory Workload Identity;User ID=clientId;

Note: To use Entra ID authentication modes (such as Active Directory Default, Active Directory Managed Identity, Active Directory Interactive, etc.) via connection string keywords, install the Microsoft.Data.SqlClient.Extensions.Azure extension package.

Encryption Modes

Mode Description
Encrypt=Optional Encryption is used if available
Encrypt=Mandatory Encryption is required (default)
Encrypt=Strict TDS 8.0 with TLS 1.3 support

SNI (SQL Server Network Interface)

Two implementations are available:

Documentation

Release Notes

Release notes are available at: https://go.microsoft.com/fwlink/?linkid=2090501

Migrating from System.Data.SqlClient

If you're migrating from System.Data.SqlClient, see the porting cheat sheet for guidance.

Key changes:

  1. Change namespace from System.Data.SqlClient to Microsoft.Data.SqlClient
  2. Update package reference to Microsoft.Data.SqlClient
  3. Review connection string defaults (e.g., Encrypt=Mandatory is now the default)

License

This package is licensed under the MIT License.

Showing the top 20 packages that depend on Microsoft.Data.SqlClient.

Packages Downloads
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
141
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
134
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
133
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
132
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
131
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
127
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
126
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
125
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
124
Microsoft.EntityFrameworkCore.SqlServer
Microsoft SQL Server database provider for Entity Framework Core.
123

.NET Framework 4.6.2

.NET 8.0

.NET 9.0

.NET Standard 2.0

Version Downloads Last updated
7.0.0 3 3/17/2026
7.0.0-preview4.26064.3 6 3/7/2026
7.0.0-preview3.25342.7 23 12/9/2025
7.0.0-preview2.25289.6 58 10/17/2025
7.0.0-preview1.25257.1 53 9/15/2025
6.1.4 11 1/16/2026
6.1.3 30 11/13/2025
6.1.2 51 10/8/2025
6.1.1 61 8/15/2025
6.1.0 86 7/26/2025
6.1.0-preview2.25178.5 59 7/3/2025
6.1.0-preview1.25120.4 79 5/2/2025
6.0.5 12 1/16/2026
6.0.4 34 11/16/2025
6.0.3 61 10/8/2025
6.0.2 75 4/28/2025
6.0.1 97 1/25/2025
6.0.0 95 1/16/2025
6.0.0-preview3.24332.3 76 11/28/2024
6.0.0-preview2.24304.8 99 11/2/2024
6.0.0-preview1.24240.8 81 8/29/2024
5.2.3 88 5/2/2025
5.2.2 95 8/27/2024
5.2.1 102 6/3/2024
5.2.0 119 2/29/2024
5.2.0-preview5.24024.3 102 1/30/2024
5.2.0-preview4.23342.2 97 12/12/2023
5.2.0-preview3.23201.1 95 7/31/2023
5.2.0-preview2.23159.1 118 7/1/2023
5.2.0-preview1.23109.1 101 5/14/2023
5.1.9 14 1/14/2026
5.1.8 37 11/14/2025
5.1.7 80 4/26/2025
5.1.6 105 8/27/2024
5.1.5 121 1/31/2024
5.1.4 122 1/28/2024
5.1.3 115 1/28/2024
5.1.2 106 10/29/2023
5.1.1 122 4/11/2023
5.1.0 106 2/5/2023
5.1.0-preview2.22314.2 100 11/18/2022
5.1.0-preview1.22279.3 111 10/28/2022
5.0.2 111 6/15/2023
5.0.1 114 11/13/2022
5.0.0 125 9/4/2022
5.0.0-preview3.22168.1 115 6/23/2022
5.0.0-preview2.22096.2 107 6/27/2022
5.0.0-preview1.22069.1 111 6/27/2022
4.1.1 105 9/15/2022
4.1.0 110 6/27/2022
4.0.6 87 8/26/2024
4.0.5 112 1/22/2024
4.0.4 117 10/30/2023
4.0.3 109 7/31/2023
4.0.2 97 9/15/2022
4.0.1 130 6/27/2022
4.0.0 109 6/16/2022
4.0.0-preview3.21293.2 105 6/27/2022
4.0.0-preview2.21264.2 112 6/27/2022
4.0.0-preview1.21237.2 126 6/27/2022
3.1.7 95 8/21/2024
3.1.6 106 8/17/2024
3.1.5 110 1/28/2024
3.1.4 116 11/5/2023
3.1.3 118 7/31/2023
3.1.2 105 2/23/2023
3.1.1 113 9/15/2022
3.1.0 134 6/27/2022
3.0.1 120 6/27/2022
3.0.0 109 6/16/2022
3.0.0-preview3.21140.5 109 6/27/2022
3.0.0-preview2.21106.5 117 6/27/2022
3.0.0-preview1.21075.2 107 6/24/2022
2.1.7 103 1/28/2024
2.1.6 101 6/12/2023
2.1.5 111 9/10/2022
2.1.4 118 6/24/2022
2.1.3 93 6/27/2022
2.1.2 105 6/27/2022
2.1.1 118 6/16/2022
2.1.0 112 6/27/2022
2.1.0-preview2.20297.7 94 6/27/2022
2.1.0-preview1.20235.1 111 6/27/2022
2.0.1 118 6/27/2022
2.0.0 113 6/27/2022
2.0.0-preview4.20142.4 102 6/27/2022
2.0.0-preview3.20122.2 119 6/27/2022
2.0.0-preview2.20084.1 101 6/27/2022
2.0.0-preview1.20021.1 117 6/27/2022
1.1.4 112 6/27/2022
1.1.3 107 6/27/2022
1.1.2 117 6/27/2022
1.1.1 100 6/27/2022
1.1.0 118 6/27/2022
1.1.0-preview2.19309.1 101 6/27/2022
1.1.0-preview1.19275.1 110 6/26/2022
1.0.19269.1 93 6/27/2022
1.0.19249.1 111 6/13/2022
1.0.19239.1 98 6/27/2022
1.0.19221.1-Preview 117 6/27/2022
1.0.19189.1-Preview 93 6/27/2022
1.0.19128.1-Preview 103 6/27/2022
1.0.19123.2-Preview 119 6/27/2022