Skip to content

Commit 9b93897

Browse files
Update README.md
1 parent 66e0f2e commit 9b93897

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ Z.EntityFramework.Plus.EFCore | <a href="https://www.nuget.org/packages/Z.Entity
2121
Z.EntityFramework.Plus.EF6 | <a href="https://www.nuget.org/packages/Z.EntityFramework.Plus.EF6/" target="_blank"><img src="https://zzzprojects.github.io/images/nuget/ef6-full-version-v.svg" alt="download" /></a><a href="https://www.nuget.org/packages/Z.EntityFramework.Plus.EF6/" target="_blank"><img src="https://zzzprojects.github.io/images/nuget/ef6-full-version-d.svg" alt="" /></a> | ```PM> Install-Package Z.EntityFramework.Plus.EF6```
2222
Z.EntityFramework.Plus.EF5 | <a href="https://www.nuget.org/packages/Z.EntityFramework.Plus.EF5/" target="_blank"><img src="https://zzzprojects.github.io/images/nuget/ef5-full-version-v.svg" alt="download" /></a><a href="https://www.nuget.org/packages/Z.EntityFramework.Plus.EF5/" target="_blank"><img src="https://zzzprojects.github.io/images/nuget/ef5-full-version-d.svg" alt="" /></a> | ```PM> Install-Package Z.EntityFramework.Plus.EF5```
2323

24-
<a href="https://github.com/zzzprojects/EntityFramework-Plus/wiki/Downloads">More download options (Full and Standalone Version)</a>
24+
<a href="https://entityframework-plus.net/download">More download options (Full and Standalone Version)</a>
2525

2626
## Features
2727
- Batch Operations
28-
- [Batch Delete](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Delete-%7C-Entity-Framework-Batch-Delete-Objects-Without-Loading-Them)
29-
- [Batch Update](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Update-%7C-Entity-Framework-Batch-Update-Objects-Without-Loading-Them)
28+
- [Batch Delete](https://entityframework-plus.net/ef-core-batch-delete)
29+
- [Batch Update](https://entityframework-plus.net/ef-core-batch-update)
3030
- LINQ
31-
- [LINQ Dynamic](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-LINQ-Dynamic)
31+
- [LINQ Dynamic](https://entityframework-plus.net/ef-core-linq-dynamic)
3232
- Query
33-
- [Query Cache](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Cache-%7C-Entity-Framework-Second-Level-Caching)
34-
- [Query Deferred](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Deferred-%7C-Entity-Framework-deferring-immediate-LINQ-query-execution)
35-
- [Query DbSetFilter](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-DbSetFilter)
36-
- [Query Filter](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Filter-%7C-Entity-Framework-Dynamic-Instance-and-Global-Filters)
37-
- [Query Future](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Future-%7C-Entity-Framework-Combine-and-Execute-Multiple-SQL-Command)
38-
- [Query IncludeFilter](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-IncludeFilter-%7C-Entity-Framework-Include-Related-Entities-using-Where-Filter)
39-
- [Query IncludeOptimized](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-IncludeOptimized-%7C-Entity-Framework-Filter-Child-Collections-and-Optimize-Include)
40-
- [Audit](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Audit-%7C-Entity-Framework-Audit-Trail-Context-and-Track-Changes)
33+
- [Query Cache](https://entityframework-plus.net/ef-core-query-cache)
34+
- [Query Deferred](https://entityframework-plus.net/ef-core-query-deferred)
35+
- [Query DbSetFilter](https://entityframework-plus.net/query-db-set-filter)
36+
- [Query Filter](https://entityframework-plus.net/ef-core-query-filter)
37+
- [Query Future](https://entityframework-plus.net/ef-core-query-future)
38+
- [Query IncludeFilter](https://entityframework-plus.net/ef-core-query-include-filter)
39+
- [Query IncludeOptimized](https://entityframework-plus.net/ef-core-query-include-optimized)
40+
- [Audit](https://entityframework-plus.net/ef-core-audit)
4141

4242
---
4343

@@ -67,7 +67,7 @@ ctx.Users.Where(x => x.LastLoginDate < DateTime.Now.AddYears(-2))
6767

6868
**Support:** EF5, EF6, EF Core
6969

70-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Delete-%7C-Entity-Framework-Batch-Delete-Objects-Without-Loading-Them)**
70+
**[Learn more](https://entityframework-plus.net/ef-core-batch-delete)**
7171

7272
## Batch Update
7373
Updates multiples rows using an expression in a single database roundtrip and without loading entities in the context.
@@ -82,7 +82,7 @@ ctx.Users.Where(x => x.LastLoginDate < DateTime.Now.AddYears(-2))
8282

8383
**Support:** EF5, EF6, EF Core
8484

85-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Batch-Update-%7C-Entity-Framework-Batch-Update-Objects-Without-Loading-Them)**
85+
**[Learn more](https://entityframework-plus.net/ef-core-batch-update)**
8686

8787
## Query Cache
8888
**Query cache is the second level cache for Entity Framework.**
@@ -119,7 +119,7 @@ QueryCacheManager.ExpireTag("countries");
119119

120120
**Support:** EF5, EF6, EF Core
121121

122-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Cache-%7C-Entity-Framework-Second-Level-Caching)**
122+
**[Learn more](https://entityframework-plus.net/ef-core-batch-update)**
123123

124124
## Query Deferred
125125
**Defer the execution of a query which is normally executed to allow some features like Query Cache and Query Future.**
@@ -138,7 +138,7 @@ ctx.Customers.DeferredCount().FutureValue();
138138
139139
**Support:** EF5, EF6, EF Core
140140

141-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Deferred-%7C-Entity-Framework-deferring-immediate-LINQ-query-execution)**
141+
**[Learn more](https://entityframework-plus.net/ef-core-query-deferred)**
142142

143143
## Query Filter
144144
**Filter query with predicate at global, instance or query level.**
@@ -183,7 +183,7 @@ var customer = ctx.Customers.Filter(CustomEnum.EnumValue).ToList();
183183

184184
**Support:** EF5, EF6, EF Core
185185

186-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Filter-%7C-Entity-Framework-Dynamic-Instance-and-Global-Filters)**
186+
**[Learn more](https://entityframework-plus.net/ef-core-query-filter)**
187187

188188
## Query Future
189189
**Query Future allow to reduce database roundtrip by batching multiple queries in the same sql command.**
@@ -216,7 +216,7 @@ Customer firstCustomer = futureFirstCustomer.Value;
216216

217217
**Support:** EF5, EF6, EF Core
218218

219-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-Future-%7C-Entity-Framework-Combine-and-Execute-Multiple-SQL-Command)**
219+
**[Learn more](https://entityframework-plus.net/ef-core-query-future)**
220220

221221
## Query IncludeFilter
222222
Entity Framework already support eager loading however the major drawback is you cannot control what will be included. There is no way to load only active item or load only the first 10 comments.
@@ -229,9 +229,9 @@ var ctx = new EntityContext();
229229
var posts = ctx.Post.IncludeFilter(x => x.Comments.Where(x => x.IsActive));
230230
```
231231

232-
**Support:** EF6
232+
**Support:** EF6, EF Core
233233

234-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-IncludeFilter-%7C-Entity-Framework-Include-Related-Entities-using-Where-Filter)**
234+
**[Learn more](https://entityframework-plus.net/ef-core-query-include-filter)**
235235

236236
## Query IncludeOptimized
237237
Improve SQL generate by Include and filter child collections at the same times!
@@ -243,9 +243,9 @@ var ctx = new EntityContext();
243243
var posts = ctx.Post.IncludeOptimized(x => x.Comments.Where(x => x.IsActive));
244244
```
245245

246-
**Support:** EF5, EF6
246+
**Support:** EF5, EF6, EF Core
247247

248-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Query-IncludeFilter-%7C-Entity-Framework-Include-Related-Entities-using-Where-Filter)**
248+
**[Learn more](https://entityframework-plus.net/ef-core-query-include-optimized)**
249249

250250
## Audit
251251
Allow to easily track changes, exclude/include entity or property and auto save audit entries in the database.
@@ -287,7 +287,7 @@ AuditManager.DefaultConfiguration.AutoSavePreAction = (context, audit) =>
287287

288288
**Support:** EF5, EF6, EF Core
289289

290-
**[Learn more](https://github.com/zzzprojects/EntityFramework-Plus/wiki/EF-Audit-%7C-Entity-Framework-Audit-Trail-Context-and-Track-Changes)**
290+
**[Learn more](https://entityframework-plus.net/ef-core-audit)**
291291

292292
## Useful links
293293

0 commit comments

Comments
 (0)