You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/snippets/Microsoft.Data.SqlClient/SqlConnectionStringBuilder.xml
+30-9Lines changed: 30 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -210,10 +210,30 @@ Modified: Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security
210
210
<ConnectRetryCount>
211
211
<summary>The number of reconnections attempted after identifying that there was an idle connection failure. This must be an integer between 0 and 255. Default is 1. Set to 0 to disable reconnecting on idle connection failures. An <seecref="T:System.ArgumentException" /> will be thrown if set to a value outside of the allowed range.</summary>
212
212
<value>The number of reconnections attempted after identifying that there was an idle connection failure.</value>
213
+
<remarks>
214
+
<formattype="text/markdown">
215
+
<![CDATA[
216
+
217
+
## Remarks
218
+
This property corresponds to the "Connect Retry Count" key within the <xref:Microsoft.Data.SqlClient.SqlConnection> connection string.
219
+
220
+
]]>
221
+
</format>
222
+
</remarks>
213
223
</ConnectRetryCount>
214
224
<ConnectRetryInterval>
215
225
<summary>Amount of time (in seconds) between each reconnection attempt after identifying that there was an idle connection failure. This must be an integer between 1 and 60. The default is 10 seconds. An <seecref="T:System.ArgumentException" /> will be thrown if set to a value outside of the allowed range.</summary>
216
226
<value>Amount of time (in seconds) between each reconnection attempt after identifying that there was an idle connection failure.</value>
227
+
<remarks>
228
+
<formattype="text/markdown">
229
+
<![CDATA[
230
+
231
+
## Remarks
232
+
This property corresponds to the "Connect Retry Interval" key within the <xref:Microsoft.Data.SqlClient.SqlConnection> connection string.
233
+
234
+
]]>
235
+
</format>
236
+
</remarks>
217
237
</ConnectRetryInterval>
218
238
<ConnectTimeout>
219
239
<summary>Gets or sets the length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.</summary>
@@ -500,7 +520,7 @@ False
500
520
<formattype="text/markdown">< and [Using Encryption Without Validation](/sql/relational-databases/native-client/features/using-encryption-without-validation).
763
786
@@ -774,9 +797,7 @@ Database = AdventureWorks
774
797
<formattype="text/markdown"><. This change is not going to impact client applications unless a direct reference has been made to `SNI.dll` or the x86 and x64 folders.
23
-
23
+
- New connection string property synonyms will replace old properties when fetching connection string from `SqlConnectionStringBuilder` for consistency. [Read More](#new-connection-string-property-synonyms)
24
24
25
25
## New Connection string property synonyms
26
26
@@ -37,7 +37,7 @@ The below connection properties can be interchangeably used with the new synonym
37
37
| TransparentNetworkIPResolution | Transparent Network IP Resolution |
38
38
| TrustServerCertificate | Trust Server Certificate |
39
39
40
-
> Note: This is not a breaking change. Old properties will continue to be supported for backwards compatibility.
40
+
> Old properties will continue to be supported for backwards compatibility, but the new connection string properties will now be included when fetching connection string from [SqlConnectionStringBuilder](https://docs.microsoft.com/dotnet/api/microsoft.data.sqlclient.sqlconnectionstringbuilder).
Copy file name to clipboardExpand all lines: release-notes/2.0/2.0.0.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,6 +102,7 @@ All changes in Microsoft.Data.SqlClient v2.0 over v1.1:
102
102
- For .NET Framework applications consuming **Microsoft.Data.SqlClient**, the `SNI.dll` files previously downloaded to the `bin\x64` and `bin\x86` folders are now named `Microsoft.Data.SqlClient.SNI.x64.dll` and `Microsoft.Data.SqlClient.SNI.x86.dll` and will be downloaded to the `bin` directory, to support auto-loading in the application process [#570](https://github.com/dotnet/SqlClient/pull/570). _This change is not going to impact client applications unless a direct reference has been made to `SNI.dll` or the x86 and x64 folders._
103
103
- Modified enclave provider interface `SqlColumnEncryptionEnclaveProvider` to be internal along with related classes `SqlEnclaveAttestationParameters` and `SqlEnclaveSession`[#602](https://github.com/dotnet/SqlClient/pull/602) - _This change is not likely to impact customer applications since secure enclaves is a relatively new feature and they would have had to implement their own enclave provider, which is not a trivial task_.
104
104
- Updated `SqlClientMetaDataCollectionNames` exposed constants by removing non-existing constants and adding new to the metadata collection [#580](https://github.com/dotnet/SqlClient/pull/580)
105
+
- New connection string property synonyms will replace old properties when fetching connection string from `SqlConnectionStringBuilder` for consistency. [Read More](#new-connection-string-property-synonyms)
105
106
106
107
107
108
### Additional Active Directory authentication modes
@@ -182,7 +183,7 @@ The below connection properties can be interchangeably used with the new synonym
182
183
| TransparentNetworkIPResolution | Transparent Network IP Resolution |
183
184
| TrustServerCertificate | Trust Server Certificate |
184
185
185
-
> [Note] This is not a breaking change. Old properties will continue to be supported for backwards compatibility.
186
+
> Old properties will continue to be supported for backwards compatibility, but the new connection string properties will now be included when fetching connection string from [SqlConnectionStringBuilder](https://docs.microsoft.com/dotnet/api/microsoft.data.sqlclient.sqlconnectionstringbuilder).
0 commit comments