Skip to content

Commit cfe69fa

Browse files
Apply suggestions from code review
changed a nonsequential list to a bulleted list and added an escape character to make bolding render properly on staging
1 parent 4f9b335 commit cfe69fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/connect/ado-net/asynchronous-programming.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ This topic discusses support for asynchronous programming in the Microsoft SqlCl
2323

2424
The Microsoft SqlClient Data Provider for SQL Server includes methods from **System.Data.SqlClient** in order to maintain backwards compatibility for applications migrating to <xref:Microsoft.Data.SqlClient>. It isn't recommended to use the following legacy asynchronous programming methods for new development:
2525

26-
1. <xref:Microsoft.Data.SqlClient.SqlCommand.BeginExecuteNonQuery%2A?displayProperty=nameWithType>
26+
- <xref:Microsoft.Data.SqlClient.SqlCommand.BeginExecuteNonQuery%2A?displayProperty=nameWithType>
2727

28-
2. <xref:Microsoft.Data.SqlClient.SqlCommand.BeginExecuteReader%2A?displayProperty=nameWithType>
28+
- <xref:Microsoft.Data.SqlClient.SqlCommand.BeginExecuteReader%2A?displayProperty=nameWithType>
2929

30-
3. <xref:Microsoft.Data.SqlClient.SqlCommand.BeginExecuteXmlReader%2A?displayProperty=nameWithType>
30+
- <xref:Microsoft.Data.SqlClient.SqlCommand.BeginExecuteXmlReader%2A?displayProperty=nameWithType>
3131

3232
> [!TIP]
3333
> In the Microsoft SqlClient Data Provider for SQL Server, these legacy methods no longer require `Asynchronous Processing=true` in the connection string.

docs/connect/ado-net/modify-data-with-stored-procedures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Stored procedures can accept data as input parameters and can return data as out
2626
2727
## Example
2828

29-
The sample uses the following stored procedure to insert a new category into the **Northwind** **Categories** table. The stored procedure takes the value in the **CategoryName** column as an input parameter and uses the **SCOPE_IDENTITY()** function to retrieve the new value of the identity field, **CategoryID**, and return it in an output parameter. The RETURN statement uses the **@@ROWCOUNT** function to return the number of rows inserted.
29+
The sample uses the following stored procedure to insert a new category into the **Northwind** **Categories** table. The stored procedure takes the value in the **CategoryName** column as an input parameter and uses the **SCOPE_IDENTITY()** function to retrieve the new value of the identity field, **CategoryID**, and return it in an output parameter. The RETURN statement uses the **\@@ROWCOUNT** function to return the number of rows inserted.
3030

3131
```sql
3232
CREATE PROCEDURE dbo.InsertCategory

0 commit comments

Comments
 (0)