Skip to content

Commit 0c690f0

Browse files
authored
Update batch-update.md
1 parent 9bcc73f commit 0c690f0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs2/pages/documentations/batch-update.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ ctx.Users.Where(x => x.LastLoginDate < date)
1717
.Update(x => new User() { IsSoftDeleted = 1 });
1818

1919
```
20+
{% include component-try-it.html href='https://dotnetfiddle.net/uzsdub' %}
2021

2122
## Batch Update
2223

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

4142
```
43+
{% include component-try-it.html href='https://dotnetfiddle.net/sfMLRj' %}
4244

4345
## Batch UpdateAsync
4446

@@ -61,6 +63,7 @@ ctx.Users.Where(x => x.LastLoginDate < date)
6163
.UpdateAsync(x => new User() { IsSoftDeleted = 1 });
6264

6365
```
66+
{% include component-try-it.html href='https://dotnetfiddle.net/7fHg1g' %}
6467

6568
## Executing Interceptor
6669

@@ -84,6 +87,7 @@ ctx.Users.Where(x => x.LastLoginDate < date)
8487
x => { x.Executing = command => commandText = command.CommandText; });
8588

8689
```
90+
{% include component-try-it.html href='https://dotnetfiddle.net/a6zJUe' %}
8791

8892
## Limitations
8993

0 commit comments

Comments
 (0)