Brian Chavez

Results 104 comments of Brian Chavez

Hi Grant, Can you give some C# code examples of the token expiration flow and how you handle renewal? I'd like to see these pain points first hand and then...

Entity Framework support for RethinkDB sounds good! I think we'd probably want to create a new assembly / nuget release like `RethinkDb.Driver.EntityFrameworkCore` (or something similar) that ultimately contains hard references...

Hey Jake, I should be online now for a few hours. 5 PM to about 7 or 8 PM Pacific Time / Los Angeles.

Hey Oliver, To answer your question (from documentation) the differences are subtle but valuable differences. Each vary in strictness in what they can deserialize: [**Wiki: Run Helpers**](https://github.com/bchavez/RethinkDb.Driver/wiki/Run-Helpers) #### `.RunAtom` When...

Ultimately, though, I like the way run helpers cover all response types without involving DLR. I was using the driver in my projects and I ran into situations where I...

Hi @oliverjanik , No worries. :+1: ##### Regarding 1 We briefly had a technical discussion about this in the early days of the driver. I believe the discussion started here:...

Hey @oliverjanik, depends on the response type. I'd need to see the protocol traces for each. There are two types of cursor responses: **cursor** `partial` and **cursor** `complete`. If it's...

One thing about run helpers that bothered me was the sort of ambiguous method overload `RunResult` method: 6. `T RunResult()` 7. `Result RunResult()` So, I've been thinking about renaming the...

Hi @oliverjanik, Pretty interesting problem and scenario. My initial thoughts are not to make contract changes to `.RunCursor()` as it relates to the protocol responses being read from the wire....

[1]:https://rethinkdb.com/api/java/coerce_to/ Also, another approach could be to use some ReQL primitives that force the response object to always be `SUCCESS_SEQUENCE` or `SUCCESS_PARTIAL`, but never `SUCCESS_ATOM`. For example, [`.CoerceTo`][1] could help...