Skip to content

Commit d33fad2

Browse files
Merge pull request #225310 from MughundhanRaveendran-MSFT/patch-20
(AzureCXP) fixes MicrosoftDocs/azure-docs#104346
2 parents eb52f2c + 66fe788 commit d33fad2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/functions-scenario-database-table-cleanup.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ You need to add the NuGet package that contains the SqlClient library. This data
6464

6565
1. In Solution Explorer, right-click the function app project and choose **Manage NuGet Packages**.
6666

67-
1. On the **Browse** tab, search for ```System.Data.SqlClient``` and, when found, select it.
67+
1. On the **Browse** tab, search for ```Microsoft.Data.SqlClient``` and, when found, select it.
6868

69-
1. In the **System.Data.SqlClient** page, select version `4.8.3` and then click **Install**.
69+
1. In the **Microsoft.Data.SqlClient** page, select version `5.1.0` and then click **Install**.
7070

7171
1. When the install completes, review the changes and then click **OK** to close the **Preview** window.
7272

@@ -85,7 +85,7 @@ Now, you can add the C# function code that connects to your SQL Database.
8585
1. Open the new code file and add the following using statements at the top of the file:
8686

8787
```cs
88-
using System.Data.SqlClient;
88+
using Microsoft.Data.SqlClient;
8989
using System.Threading.Tasks;
9090
```
9191

0 commit comments

Comments
 (0)