David Bottiau
David Bottiau
Weird, on most packages, the method is named `new`. In Rust: ```rust let db = Surreal::new::("127.0.0.1:8000").await?; ``` In Golang: ```go db, err := surrealdb.New("ws://localhost:8000/rpc") ``` For information, I tried to...
Now, I can understand your point of view. I made those extra functions for the following reasons: 1. Made as `static` so that we can call the function anywhere. But...
For information, those static methods are gone from at least v0.3.
PR #58 for reference
Indeed, having a base class and not an interface have many limitations. Migrating to an `IRecord` interface seems feasible. I was thinking about this implementation: ```csharp public interface IRecord {...
> Do we need an F# package? Can't you reference any .NET dll from any .NET like language? Yes, you can. But the F# implementation could be slightly different than...
> Is anyone working on this? I'd like to have a go? HI Simon. No, I don't think so. You can work on it. Feel free to ask any question.
Yes, implementing EF Core is not a simple task. I created a new issue #61 that can be a nice-to-have feature and can be a first step before having a...
The original intention was to be agnostic to any data-oriented solution like EF and to follow the behavior of the existing client SDKs for SurrealDB. Note that the `[Table]` +...
Hello Steve, Aren't you able to store and use the JWT in Local/Session storage using `SignUp` and `SignIn` methods? I may need to create an example project to see how...