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