Skip to content

Commit 8bd542c

Browse files
Update query-include-filter.md
1 parent 17c5d6e commit 8bd542c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ When an immediate method is invoked to resolve the query, the initial query is m
120120
{% include template-example.html %}
121121
```csharp
122122

123-
var list = ctx.Orders.IncludeFilter(x => x.OrderItems.Where(y => !y.IsSoftDeleted)
123+
var list = ctx.Orders.IncludeFilter(x => x.OrderItems.Where(y => !y.IsSoftDeleted))
124124
.Take(10)
125125
.ToList();
126126

0 commit comments

Comments
 (0)