New
Stable Release v6.1.4
This update brings the following changes since the 6.1.3 release:
Unclaimed project
Are you a maintainer of SqlClient? Claim this project to take control of your public changelog and roadmap.
Changelog
Microsoft.Data.SqlClient provides database connectivity to SQL Server for .NET applications.
Last updated 1 day ago
This update brings the following changes since the 6.1.3 release:
What Changed:
Switch.Microsoft.Data.SqlClient.EnableMultiSubnetFailoverByDefault to set MultiSubnetFailover=true by default in connection string.
(#3851)Who Benefits:
Impact:
// In application code
AppContext.SetSwitch("Switch.Microsoft.Data.SqlClient.EnableMultiSubnetFailoverByDefault", true);
// In runtimeconfig.json
{
"configProperties": {
"Switch.Microsoft.Data.SqlClient.EnableMultiSubnetFailoverByDefault": true
}
}
<!-- In App.Config -->
<runtime>
<AppContextSwitchOverrides value="Switch.Microsoft.Data.SqlClient.EnableMultiSubnetFailoverByDefault=true" />
</runtime>
SqlStatistics execution timing by using Environment.TickCount instead of more expensive timing mechanisms.
(#3830)