Skip to content

Commit 83bb05e

Browse files
Update linq-dynamic.md
1 parent 6d3e70c commit 83bb05e

File tree

1 file changed

+17
-21
lines changed

1 file changed

+17
-21
lines changed

docs/pages/features/linq-dynamic.md

Lines changed: 17 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,20 @@ All LINQ predicate methods are supported. A string expression which return a Boo
1212
###### Deferred Methods
1313
| Name | Description | Example |
1414
| :--- | :---------- | :------ |
15-
| `SkipWhile` | | [Coming soon](#) |
16-
| `TakeWhile` | | [Coming soon](#) |
17-
| `Where` | | [Coming soon](#) |
15+
| `Where` | | [Try it](https://dotnetfiddle.net/QhVfRW) |
1816

1917
###### Immediate Methods
2018
| Name | Description | Example |
2119
| :--- | :---------- | :------ |
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) |
3229

3330
```csharp
3431
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
4340
###### Deferred Methods
4441
| Name | Description | Example |
4542
| :--- | :---------- | :------ |
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) |
5248

5349
```csharp
5450
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
6258
###### Methods
6359
| Name | Description | Example |
6460
| :--- | :---------- | :------ |
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) |
6763

6864
```csharp
6965
var list = context.Customers.Execute<IEnumerable<Customer>>("Where(x => x.IsActive == true)").ToList();

0 commit comments

Comments
 (0)