File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
docs2/pages/documentations Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments