RethinkDb.Driver icon indicating copy to clipboard operation
RethinkDb.Driver copied to clipboard

:headphones: A NoSQL C#/.NET RethinkDB database driver with 100% ReQL API coverage.

Results 24 RethinkDb.Driver issues
Sort by recently updated
recently updated
newest added

Ryan Paul @ RethinkDB brought to light there are some issues with PowerShell + Lambdas (`ReqlFunction*`) type resolution. After some light debugging, I suspect this is a problem with `Newtonsoft.Json`...

Asked on slack `#driver-dev`: Hey there... was thinking more about the performance of the C# driver... I was wondering, at the protocol level, is there assurance that the JSON response...

Would it make sense to to swap out Json.NET for Jil or provide alternative json implementation? https://github.com/kevin-montrose/Jil

Seems like Node ReGrid can get 3x more writes than .NET; yielding faster upload wall time. See image below (credits @buskila): ![pasted_image_at_2016_08_24_13_03](https://cloud.githubusercontent.com/assets/478118/17918557/d28f41ae-697a-11e6-82a6-1215e2701654.png) ## Test setup Upload only: File Size: 1...

Started off mostly for Unity3D, but also applies to those systems that don't have full threading `await/async` support like Windows Phone, IOT, and Xamarin that may prefer different threading /...

Allow the use of changes method on queryable

enhancement
linq provider

Been thinking about `Cursor` a lot recently. One of the things I see with the current implementation is, every time the consuming thread reaches zero-buffered items the consuming thread has...

Add translation of queries like on indexes to use `Between` - `.Where( x.Size > 5 && x.Size < 10 )` - `.Where( x.Date < DateTime.Now && x.Date > new DateTime(...

enhancement
linq provider

Thanks for all the work on this library. I like it so far. Do you have any plans to provide more idiomatic API with strong typing? As it stands everything...

Any plans to implement row? Row feels like a good way to construct queries on the fly (trees of RqlExpr). I had to resort to working ReqlFunction1 which works but...