Skip to content

Commit 4ff6073

Browse files
authored
Update query-filter.md
1 parent e0ad7f6 commit 4ff6073

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs2/pages/documentations/query-filter.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ var list = ctx.Categories.ToList();
270270

271271
### Security Access
272272

273-
Viewing sensible data requires often some permissions. By example, not everyone can see all posts in a forum.
273+
Viewing sensible data often requires some permissions. For example, not everyone can see all posts in a forum.
274274

275275
*In this example, some posts are only available by role level.*
276276

@@ -308,7 +308,7 @@ var list = ctx.Categories.ToList()
308308

309309
### Include Filtering
310310

311-
Including related entities can be useful. By example, every time you load a post, you want to include all active comments related.
311+
Including related entities can be useful. For example, every time you load a post, you want to include all active comments related.
312312

313313
**Require:** EF+ Query Include
314314

@@ -361,7 +361,7 @@ using (var ctx = new EntityContext())
361361

362362
#### Context Filter
363363

364-
Since the QueryCacheManager is global, our library have some limitation with Filter by context (Global Filter doesn't have this issue since it apply the same logic to all query.
364+
Since the QueryCacheManager is global, our library have some limitation with Filter by context (Global Filter doesn't have this issue since it apply the same logic to all query.)
365365

366366
- LazyLoading only work with GlobalFilter
367367
- context.Set only work with GlobalFilter (You can use the method SetFiltered instead)
@@ -383,7 +383,7 @@ For this kind of scenario, we recommend using instead: [EntityFramework.DynamicF
383383
384384
#### Entity Framework Core - Limitations
385385

386-
A **ForceCast** option has been added to support temporary inheritance, but some LINQ method will not be longer work in combination with ForceCast
386+
A **ForceCast** option has been added to support temporary inheritance, but some LINQ method will no longer be working in combination with ForceCast.
387387

388388
{% include template-example.html %}
389389
```csharp
@@ -392,7 +392,7 @@ QueryFilterManager.ForceCast = true;
392392

393393
```
394394

395-
Here is a list of known method that doesn't longer work with query filtered with the ForceCast options enabled:
395+
Here is a list of known method that no longer work with query filtered with the ForceCast options enabled:
396396

397397
- Aggregate
398398
- Max

0 commit comments

Comments
 (0)