Judah Gabriel Himango

Results 116 comments of Judah Gabriel Himango

We require Raven 4.0.2. Are you grabbing the right package? Ours is called RavenDB.AspNet.Identity. I just checked NuGet, and the latest version of our package (2.0.0) requires Raven 4.0.2: ![image](https://user-images.githubusercontent.com/312936/38937467-e5f9c8b0-42e8-11e8-886f-bb96812e3716.png)

Thanks, I'll have a look.

I'm skeptical. We don't use indexes to ensure consistency (e.g. unique email addresses); we use cluster-wide, always-consistent compare/exchange. And, for creating a new user, it returns a user with an...

I'd accept a PR if the static indexes is opt-in, e.g. ```csharp services.AddRavenDbIdentityStores(options => o.UseStaticIndexes = true); ``` Something like that. Reviewing the UserStore.cs code, I see we use indexes...

Hi @ellipsis-apps , The question boils down to this:, is Blazor's ".NET in the browser" WASM runtime able to run the RavenDB C# client? My answer is: probably? You'll probably...

Yeah, I think MS Identity Framework has been updated. I'll update the project with the new properties shortly.

Hi Jan, nice to meet you. Glad you're looking at Raven for your church's website. ASP.NET MVC skills will transfer over to ASP.NET 5. The latter is really just MVC...

Hi Chaddeus, Yes, I think we will change things around for ASP.NET Core. I haven't yet looked at this, however; we're still in RC mode. I'm opened to a PR...

Is there a reason AsyncOption [uses .ConfigureAwait(false)](https://github.com/nlkl/Optional/blob/master/src/Optional.Async/AsyncOption.cs#L33), instead of .ConfigureAwait(true)? It causes breakage in web apps that expecting the same thread (e.g. to access the current request) after awaiting an...

I would have to place that in *every* controller method where Optional is used. (Or in a desktop app, in *every* UI event handler.) That's both error prone and ugly....