Update README.md

This commit is contained in:
dlebee 2018-02-12 22:23:43 -06:00 committed by GitHub
parent ee7b92a258
commit 302c53e4ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ query = query.ThenBy("Id");
### Collection Filtering ### Collection Filtering
You don't have to Worry about it. You don't have to Worry about it.
The libary will do it for you. The library will do it for you.
```csharp ```csharp
var query = authors.AsQueryable(); var query = authors.AsQueryable();
query = query.Query(qb => query = query.Query(qb =>
@ -72,4 +72,4 @@ queryBuilder.And(subQuery =>
}); });
query = queryBuilder.Build(); query = queryBuilder.Build();
``` ```