@@ -12,23 +12,20 @@ All LINQ predicate methods are supported. A string expression which return a Boo
12
12
###### Deferred Methods
13
13
| Name | Description | Example |
14
14
| :--- | :---------- | :------ |
15
- | ` SkipWhile ` | | [ Coming soon] ( # ) |
16
- | ` TakeWhile ` | | [ Coming soon] ( # ) |
17
- | ` Where ` | | [ Coming soon] ( # ) |
15
+ | ` Where ` | | [ Try it] ( https://dotnetfiddle.net/QhVfRW ) |
18
16
19
17
###### Immediate Methods
20
18
| Name | Description | Example |
21
19
| :--- | :---------- | :------ |
22
- | ` All ` | | [ Coming soon] ( # ) |
23
- | ` Any ` | | [ Coming soon] ( # ) |
24
- | ` Count ` | | [ Coming soon] ( # ) |
25
- | ` First ` | | [ Coming soon] ( # ) |
26
- | ` FirstOrDefault ` | | [ Coming soon] ( # ) |
27
- | ` Last ` | | [ Coming soon] ( # ) |
28
- | ` LastOrDefault ` | | [ Coming soon] ( # ) |
29
- | ` LongCount ` | | [ Coming soon] ( # ) |
30
- | ` Single ` | | [ Coming soon] ( # ) |
31
- | ` SingleOrDefault ` | | [ Coming soon] ( # ) |
20
+ | ` All ` | | [ Try it] ( https://dotnetfiddle.net/YCT73M ) |
21
+ | ` Any ` | | [ Try it] ( https://dotnetfiddle.net/vEbwLr ) |
22
+ | ` Count ` | | [ Try it] ( https://dotnetfiddle.net/v8rqKV ) |
23
+ | ` First ` | | [ Try it] ( https://dotnetfiddle.net/CfxUKL ) |
24
+ | ` FirstOrDefault ` | | [ Try it] ( https://dotnetfiddle.net/UX3Ymb ) |
25
+ | ` LongCount ` | | [ Try it] ( https://dotnetfiddle.net/4xrM1d ) |
26
+ | ` SelectMany ` | | [ Try it] ( https://dotnetfiddle.net/KLF5e7 ) |
27
+ | ` Single ` | | [ Try it] ( https://dotnetfiddle.net/onW4hW ) |
28
+ | ` SingleOrDefault ` | | [ Try it] ( https://dotnetfiddle.net/nU97uw ) |
32
29
33
30
``` csharp
34
31
var list = context .Customers .Where (x => " x.IsActive" ).ToList ();
@@ -43,12 +40,11 @@ All LINQ selector and order are supported. Most of them require the "Dynamic" su
43
40
###### Deferred Methods
44
41
| Name | Description | Example |
45
42
| :--- | :---------- | :------ |
46
- | ` OrderByDescendingDynamic ` | | [ Coming soon] ( # ) |
47
- | ` OrderByDynamic ` | | [ Coming soon] ( # ) |
48
- | ` SelectDynamic ` | | [ Coming soon] ( # ) |
49
- | ` SelectManyDynamic ` | | [ Coming soon] ( # ) |
50
- | ` ThenByDescendingDynamic ` | | [ Coming soon] ( # ) |
51
- | ` ThenByDynamic ` | | [ Coming soon] ( # ) |
43
+ | ` OrderByDescendingDynamic ` | | [ Try it] ( https://dotnetfiddle.net/doNrVQ ) |
44
+ | ` OrderByDynamic ` | | [ Try it] ( https://dotnetfiddle.net/rzKycR ) |
45
+ | ` SelectDynamic ` | | [ Try it] ( https://dotnetfiddle.net/YE83om ) |
46
+ | ` ThenByDescendingDynamic ` | | [ Try it] ( https://dotnetfiddle.net/8FxroD ) |
47
+ | ` ThenByDynamic ` | | [ Try it] ( https://dotnetfiddle.net/pVCcRf ) |
52
48
53
49
``` csharp
54
50
var list = context .Customers .OrderByDescendingDynamic (x => " x.Name" ).ToList ();
@@ -62,8 +58,8 @@ The Execute method is the LINQ Dynamic ultimate methods which let you evaluate a
62
58
###### Methods
63
59
| Name | Description | Example |
64
60
| :--- | :---------- | :------ |
65
- | ` Execute ` | | [ Coming soon ] ( # ) |
66
- | ` Execute<TResult> ` | | [ Coming soon ] ( # ) |
61
+ | ` Execute ` | | [ Try it ] ( https://dotnetfiddle.net/z1jIkv ) |
62
+ | ` Execute<TResult> ` | | [ Try it ] ( https://dotnetfiddle.net/jgOyFi ) |
67
63
68
64
``` csharp
69
65
var list = context .Customers .Execute <IEnumerable <Customer >>(" Where(x => x.IsActive == true)" ).ToList ();
0 commit comments