Skip to content

Commit d9f0b74

Browse files
authored
Update tutorial-batch-operations.md
1 parent d9ec6e4 commit d9f0b74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs2/pages/getting-started/tutorial-batch-operations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ctx.Users.Where(x => x.LastLoginDate < date)
1919
.Delete(x => x.BatchSize = 1000);
2020

2121
```
22-
{% include component-try-it.html href='https://dotnetfiddle.net/asjI4U' %}
22+
[Try it in EF6](https://dotnetfiddle.net/asjI4U) | [Try it in EF Core](https://dotnetfiddle.net/KMgmZs)
2323

2424
***Support:** EF5, EF6, EF Core*
2525

@@ -39,7 +39,7 @@ ctx.Users.Where(x => x.LastLoginDate < date)
3939
.Update(x => new User() { IsSoftDeleted = 1 });
4040

4141
```
42-
{% include component-try-it.html href='https://dotnetfiddle.net/cV3IHD' %}
42+
[Try it in EF6](https://dotnetfiddle.net/cV3IHD) | [Try it in EF Core](https://dotnetfiddle.net/KMgmZs)
4343

4444
***Support:** EF5, EF6, EF Core*
4545

0 commit comments

Comments
 (0)