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
|`Where`| Filters a sequence of values based on a predicate using a dynamic expression. |[Try it](https://dotnetfiddle.net/QhVfRW)|
21
+
|`Where`| Filters a sequence of values based on a predicate using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/QhVfRW) / [NET Core](https://dotnetfiddle.net/z8t5wV)|
22
22
23
23
###### Immediate Methods
24
24
| Name | Description | Example |
25
25
| :--- | :---------- | :------ |
26
-
|`All`| Determines whether all elements of a sequence satisfy a condition using a dynamic expression. |[Try it](https://dotnetfiddle.net/YCT73M)|
27
-
|`Any`| Determines whether any element of a sequence exists or satisfies a condition using a dynamic expression. |[Try it](https://dotnetfiddle.net/vEbwLr)|
28
-
|`Count`| Returns the number of elements in a sequence using a dynamic expression. |[Try it](https://dotnetfiddle.net/v8rqKV)|
29
-
|`First`| Returns the first element of a sequence using a dynamic expression. |[Try it](https://dotnetfiddle.net/CfxUKL)|
30
-
|`FirstOrDefault`| Returns the first element of a sequence, or a default value if no element is found using a dynamic expression. |[Try it](https://dotnetfiddle.net/UX3Ymb)|
31
-
|`LongCount`| Returns an Int64 that represents the number of elements in a sequence using a dynamic expression. |[Try it](https://dotnetfiddle.net/4xrM1d)|
32
-
|`Single`| Returns a single, specific element of a sequence using a dynamic expression. |[Try it](https://dotnetfiddle.net/onW4hW)|
33
-
|`SingleOrDefault`| Returns a single, specific element of a sequence, or a default value if that element is not found using a dynamic expression. |[Try it](https://dotnetfiddle.net/nU97uw)|
26
+
|`All`| Determines whether all elements of a sequence satisfy a condition using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/YCT73M) / [NET Core](https://dotnetfiddle.net/XrG83V)|
27
+
|`Any`| Determines whether any element of a sequence exists or satisfies a condition using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/vEbwLr) / [NET Core](https://dotnetfiddle.net/Gh9OSM)|
28
+
|`Count`| Returns the number of elements in a sequence using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/v8rqKV) / [NET Core](https://dotnetfiddle.net/ox7EFW)|
29
+
|`First`| Returns the first element of a sequence using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/CfxUKL) / [NET Core](https://dotnetfiddle.net/gW1CqX)|
30
+
|`FirstOrDefault`| Returns the first element of a sequence, or a default value if no element is found using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/UX3Ymb) / [NET Core](https://dotnetfiddle.net/3ZlZuq)|
31
+
|`LongCount`| Returns an Int64 that represents the number of elements in a sequence using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/4xrM1d) / [NET Core](https://dotnetfiddle.net/fc6TLH)|
32
+
|`Single`| Returns a single, specific element of a sequence using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/onW4hW) / [NET Core](https://dotnetfiddle.net/SHPNY8)|
33
+
|`SingleOrDefault`| Returns a single, specific element of a sequence, or a default value if that element is not found using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/nU97uw) / [NET Core](https://dotnetfiddle.net/S07cJB)|
34
34
35
35
## Order & Select
36
36
@@ -39,17 +39,17 @@ All LINQ selector and order are supported. Most of them require the "Dynamic" su
|`OrderByDescendingDynamic`| Sorts the elements of a sequence in descending order using a dynamic expression. |[Try it](https://dotnetfiddle.net/doNrVQ)|
48
-
|`OrderByDynamic`| Sorts the elements of a sequence in ascending order using a dynamic expression. |[Try it](https://dotnetfiddle.net/rzKycR)|
49
-
|`SelectMany`| Projects each element of a sequence to an IEnumerable<T> and flattens the resulting sequences into one sequence using a dynamic expression. |[Try it](https://dotnetfiddle.net/KLF5e7)|
50
-
|`SelectDynamic`| Projects each element of a sequence into a new form using a dynamic expression. |[Try it](https://dotnetfiddle.net/YE83om)|
51
-
|`ThenByDescendingDynamic`| Performs a subsequent ordering of the elements in a sequence in descending order using a dynamic expression. |[Try it](https://dotnetfiddle.net/8FxroD)|
52
-
|`ThenByDynamic`| Performs a subsequent ordering of the elements in a sequence in ascending order using a dynamic expression. |[Try it](https://dotnetfiddle.net/pVCcRf)|
47
+
|`OrderByDescendingDynamic`| Sorts the elements of a sequence in descending order using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/doNrVQ) / [NET Core](https://dotnetfiddle.net/zt3MEa)|
48
+
|`OrderByDynamic`| Sorts the elements of a sequence in ascending order using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/rzKycR) / [NET Core](https://dotnetfiddle.net/9GvILu)|
49
+
|`SelectMany`| Projects each element of a sequence to an IEnumerable<T> and flattens the resulting sequences into one sequence using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/KLF5e7) / [NET Core](https://dotnetfiddle.net/toMh6j)|
50
+
|`SelectDynamic`| Projects each element of a sequence into a new form using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/YE83om) / [NET Core](https://dotnetfiddle.net/X9uPDb)|
51
+
|`ThenByDescendingDynamic`| Performs a subsequent ordering of the elements in a sequence in descending order using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/8FxroD) / [NET Core](https://dotnetfiddle.net/Kd2WQY)|
52
+
|`ThenByDynamic`| Performs a subsequent ordering of the elements in a sequence in ascending order using a dynamic expression. |[NET Framework](https://dotnetfiddle.net/pVCcRf) / [NET Core](https://dotnetfiddle.net/9pyiEV)|
53
53
54
54
## Execute
55
55
@@ -59,10 +59,10 @@ The Execute method is the LINQ Dynamic ultimate methods which let you evaluate a
0 commit comments