Skip to content

Commit a387d07

Browse files
committed
Update example code blocks
1 parent 59be86b commit a387d07

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

learn-pr/azure/build-dotnet-app-azure-cosmos-db-nosql/includes/4-exercise-create-resources.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ Your app now creates a database and container. The methods you used to create th
207207
1. Review the *Program.cs* code file to make sure that your code matches this sample:
208208

209209
```csharp
210+
using Azure.Identity;
210211
using Microsoft.Azure.Cosmos;
211212
using Microsoft.Azure.Cosmos.Fluent;
212213
using Microsoft.Azure.Cosmos.Linq;

learn-pr/azure/build-dotnet-app-azure-cosmos-db-nosql/includes/5-exercise-create-items.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@ Your app now creates multiple items and is designed to be resilient enough to be
249249
1. Review the *Program.cs* code file to make sure that your code matches this sample.
250250

251251
```csharp
252+
using Azure.Identity;
252253
using Microsoft.Azure.Cosmos;
253254
using Microsoft.Azure.Cosmos.Fluent;
254255
using Microsoft.Azure.Cosmos.Linq;

learn-pr/azure/build-dotnet-app-azure-cosmos-db-nosql/includes/6-exercise-read-query.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ Your app now reads and queries items from the container. Here, you run the appli
176176
1. Review the *Program.cs* code file to make sure that your code matches this sample.
177177

178178
```csharp
179+
using Azure.Identity;
179180
using Microsoft.Azure.Cosmos;
180181
using Microsoft.Azure.Cosmos.Fluent;
181182
using Microsoft.Azure.Cosmos.Linq;

learn-pr/azure/build-dotnet-app-azure-cosmos-db-nosql/includes/7-exercise-linq.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ Your app now uses LINQ to build a cross-partition query that your developer team
117117
1. Review the *Program.cs* code file to make sure that your code matches this sample.
118118

119119
```csharp
120+
using Azure.Identity;
120121
using Microsoft.Azure.Cosmos;
121122
using Microsoft.Azure.Cosmos.Fluent;
122123
using Microsoft.Azure.Cosmos.Linq;

0 commit comments

Comments
 (0)