Update README.md
This commit is contained in:
parent
118f7c30f8
commit
244d8ef0b9
12
README.md
12
README.md
@ -68,6 +68,18 @@ TestSales
|
|||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Select
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
var querySelect = query.Select(t =>
|
||||||
|
{
|
||||||
|
t.NullChecking(true); // not obligated but usefull for in memory queries.
|
||||||
|
t.PathToList("Posts.Comments.CommentLikes", selectCollectionHandling: SelectCollectionHandling.Flatten);
|
||||||
|
t.Path("FirstName");
|
||||||
|
t.Path("LastName", "ChangePropertyNameOfLastName");
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
### In Support
|
### In Support
|
||||||
You can filter with a list, this will generate a contains with your list.
|
You can filter with a list, this will generate a contains with your list.
|
||||||
```csharp
|
```csharp
|
||||||
|
Loading…
Reference in New Issue
Block a user