File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ Stay updated with latest changes
1717
1818## Features
1919- Batch Operations
20- - [ Batch Delete] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Delete-%7C-Entity-Framework-Delete-object-without-retrieving-it )
21- - [ Batch Update] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Update-%7C-Entity-Framework-Update-object-without-retrieving-it )
20+ - [ Batch Delete] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Delete-%7C-Entity-Framework-Batch- Delete-Objects-Without-Loading-Them )
21+ - [ Batch Update] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Update-%7C-Entity-Framework-Batch- Update-Objects-Without-Loading-Them )
2222- Query
2323 - [ Query Cache] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Cache-%7C-Entity-Framework-Second-Level-Caching )
2424 - [ Query Deferred] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Deferred-%7C-Entity-Framework-deferring-immediate-LINQ-query-execution )
@@ -50,7 +50,7 @@ ctx.Users.Where(x => x.LastLoginDate < DateTime.Now.AddYears(-2))
5050 .Delete (x => x .BatchSize = 1000 );
5151```
5252
53- ** [ Learn more] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Delete-%7C-Entity-Framework-Delete-object-without-retrieving-it ) **
53+ ** [ Learn more] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Delete-%7C-Entity-Framework-Batch- Delete-Objects-Without-Loading-Them ) **
5454
5555## Batch Update
5656Updates multiples rows using an expression in a single database roundtrip and without loading entities in the context.
@@ -63,7 +63,7 @@ ctx.Users.Where(x => x.LastLoginDate < DateTime.Now.AddYears(-2))
6363 .Update (x => new User () { IsSoftDeleted = 1 });
6464```
6565
66- ** [ Learn more] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Update-%7C-Entity-Framework-Update-object-without-retrieving-it ) **
66+ ** [ Learn more] ( https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Update-%7C-Entity-Framework-Batch- Update-Objects-Without-Loading-Them ) **
6767
6868## Query Cache
6969** Query cache is the second level cache for Entity Framework.**
You can’t perform that action at this time.
0 commit comments