Skip to content

Commit 712bec7

Browse files
authored
Update query-include-filter.md
1 parent db06dee commit 712bec7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs2/pages/documentations/query-include-filter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
With Entity Framework, "Include" method is often used to load related entities / child collections. However, the method doesn't let you use LINQ queryable methods like **Where** to filter entities to include which is a major drawback. Excluding soft deleted records or limiting the result is a frequent real life scenario which the "Include" method doesn't support.
5+
With Entity Framework, "Include" method is often used to load related entities / child collections. However, the method doesn't let you use LINQ queryable methods like **Where** to filter entities to include which is a major drawback. Excluding soft deleted records or limiting the result is a frequent real-life scenario which the "Include" method doesn't support.
66

77
**EF+ Query IncludeFilter** lets you filter and perform LINQ queryable methods on related entities.
88

@@ -180,8 +180,8 @@ ctx.Posts.IncludeFilter(q => q.Comments.Take(1)).ToList();
180180

181181
## Conclusion
182182

183-
Filtering included related entities is one of the most frequently asked questions in forums. **EF+ Query IncludeFilter** now make it possible without any learning curve required for a junior developer to understand what the method does.
183+
Filtering included related entities is one of the most frequently asked questions in forums. **EF+ Query IncludeFilter** now makes it possible without any learning curve required for a junior developer to understand what the method does.
184184

185185
Need help getting started? [info@zzzprojects.com](mailto:info@zzzprojects.com)
186186

187-
We welcome all comments, ideas and suggestions to improve our library.
187+
We welcome all comments, ideas and suggestions to improve our library.

0 commit comments

Comments
 (0)