Skip to content

Commit 1fdf2f2

Browse files
authored
Update linq-dynamic.md
1 parent 739208d commit 1fdf2f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs2/pages/documentations/linq-dynamic.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
## Description
44
Extend the IEnumerable<T> and IQueryable<T> interface with methods to use LINQ with dynamic expressions.
55

6-
LINQ (Language Integrated Query) has been introduced in .NET 3.5 and since has been one of the most used features. ORM like Entity Framework takes advantage from this feature and allow you to write type-safe queries.
6+
Since LINQ (Language Integrated Query) has been introduced in .NET 3.5, it has been one of the most used feature. ORM like Entity Framework takes advantage of this feature and allows you to write type-safe queries.
77

8-
The theory wants you only to use type-safe queries. However, the reality requires often you to write LINQ with dynamic query expressions.
8+
In theory, you should only use it to write type-safe queries. However, the reality often requires you to write LINQ with dynamic query expressions.
99

1010
## LINQ Dynamic - Predicate
11-
You can use any LINQ method that support predicate with a dynamic C# expression :
11+
You can use any LINQ method that supports predicate with a dynamic C# expression :
1212

1313
- Deferred
1414
- SkipWhile

0 commit comments

Comments
 (0)