bchavez / RethinkDb.Driver

:headphones: A NoSQL C#/.NET RethinkDB database driver with 100% ReQL API coverage.
http://rethinkdb.com/api/java
Other
383 stars 134 forks source link

Added support for Select queries #157

Closed jrote1 closed 3 years ago

jrote1 commented 3 years ago

Before submitting your PR, please review the following checklist:

jrote1 commented 3 years ago

We're getting into some advanced queries now

.GroupBy( x => x.Area )
.Select( x => new GroupByResult
{
    Area = x.Key,
    Places = x.Where( p => p.Size > 9 ).OrderBy( p => p.Size ).ToList()
 } )
 .ToList();