You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs2/pages/documentations/linq-dynamic.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@
3
3
## Description
4
4
Extend the IEnumerable<T> and IQueryable<T> interface with methods to use LINQ with dynamic expressions.
5
5
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.
7
7
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.
9
9
10
10
## 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 :
0 commit comments