Skip to content

Commit 86a9a72

Browse files
authored
Update query-filter.md
1 parent b001b5a commit 86a9a72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs2/pages/documentations/query-filter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ var list = ctx.Invoices.Where(q => q.Where(x => x.CustomerID = myCustomerID)).To
252252

253253
### Object State
254254

255-
Removing inactive or soft deleted records is probably the most common scenario. A soft delete is often useful when related data cannot be deleted. By example, the customer cannot be deleted because related orders cannot be deleted instead, he becomes inactive.
255+
Removing inactive or soft deleted records is probably the most common scenario. A soft delete is often useful when related data cannot be deleted. For example, the customer cannot be deleted because related orders cannot be deleted instead, he becomes inactive.
256256

257257
*In this example, we display only active category.*
258258

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

362362
#### Context Filter
363363

364-
Since the QueryCacheManager is global, our library have some limitations 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 limitations with Filter by context (Global Filter doesn't have this issue since it applies 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)

0 commit comments

Comments
 (0)