Skip to content

Commit ba79637

Browse files
authored
Update ef-core-batch-delete.md
1 parent eefab6d commit ba79637

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

docs2/pages/ef-core-docs/documentations/batch-delete/ef-core-batch-delete.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,16 @@ ctx.Users.Where(x => x.LastLoginDate < date)
2727
.Delete(x => x.BatchSize = 1000);
2828

2929
```
30-
[Try it](https://dotnetfiddle.net/R6D5BX)
30+
[Try it](https://dotnetfiddle.net/8qqyPw)
3131

32+
## Scenarios
33+
34+
- [Query Criteria](scenarios/ef-core-batch-delete-query-criteria)
35+
- [Batch Size](scenarios/ef-core-batch-delete-using-batch-size)
36+
- [Batch Delay Interval](scenarios/ef-core-batch-delete-using-batch-delay-interval)
37+
- [Executing Interceptor](scenarios/ef-core-batch-delete-executing-interceptor)
38+
- [EF Core InMemory](scenarios/ef-core-batch-delete-inmemory)
39+
3240
## Limitations
3341

3442
- **DO NOT** support Complex Type

0 commit comments

Comments
 (0)