David Bottiau

Results 135 comments of David Bottiau

Hello @gguillemas The thing is that Invalidate only deals with authentication in my mind. But perhaps I can reuse this one instead of adding a new one like you said,...

Can you try by implementing the `Record` class instead of the `IRecord` interface? The `IRecord` interface is meant for devs who want to unlock some features and/or override attributes on...

Unfortunately, I doubt that it would have worked with `IRecord` but an easy fix would be to use the `CborProperty` attribute, as CBOR is the current data format exchange in...

@gguillemas `rand::id` might be even better, yes.

Related to https://github.com/surrealdb/surrealdb/issues/2107

Hello @Awire9966 You should find what you are looking for here: https://github.com/surrealdb/surrealdb.net The .NET SDK is available as a NuGet package and it should work with the latest versions of...

Hello Eric, I got into the code and it indeed abort early by returning a `Task.FromCanceled` if the cancellation token is already canceled. Good catch. Do you want to make...

But still, the problem comes frome the `Release` call. So, shouldn't we prevent continuation of the method, kind of like this: ```cs var task = _semaphoreConnect.WaitAsync(cancellationToken); await task.ConfigureAwait(false); if (task.IsCanceled)...

Ah, right. It will indeed throw an Exception and as it in a try/catch, it will release even though the Semaphore wasn't properly entered. Just like you said. Do you...

Hello @shuitai If you are talking about implementating OData via an ASP.NET Core Web API, then yes. It will be unlocked once #61 feature is completed.