This commit is contained in:
David Lebée 2018-04-17 21:43:56 -05:00
commit 3f0aeaa441

View File

@ -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
You can filter with a list, this will generate a contains with your list.
```csharp