dgraph.net
dgraph.net copied to clipboard
Official Dgraph .NET Client
where should i can download the Dgraph.net 23.0.0 introduced in the README?
I added the ProcessAddress method in the Dgraph Cloud Channel to properly handle various address formats. The method now ensures that the address is correctly formatted for Dgraph Cloud by...
Lock the body of `LoginIntoNamespace` to ensure it is thread safe, similarly to https://github.com/dgraph-io/dgo/blob/master/client.go#L122-L139
Currently the `DgraphClient` class only exposes a constructor accepting gRPC channels, which will then be used to create the gRPC clients. These channels have to be manually mantained (lifetime, etc.)...
Not sure of the current status of this. Some of the commits are old, but look reasonable. I think we should: * make these commits - potentially with some refactoring...
I'm trying to follow the readme and I'm getting a Grpc error. instead of ```C# var client = new DgraphClient(new Channel("127.0.0.1:9080", ChannelCredentials.Insecure)); ``` I'm writing ```C# var channel = GrpcChannel.ForAddress("http://127.0.0.1:9080");...
It's a convention in .NET to have the Async suffix on asynchronous methods. One example is the `DgraphClient.Alter` method. When following the convention it should be `DgraphClient.AlterAsync`. For more information:...
The Api namespace (where e.g. Operation is found) doesn't have any company/product prefix, it's just Api. Would it be possible to adjust that? In [api.proto](https://github.com/dgraph-io/dgraph.net/blob/f54ee55a59a9f0d000ebf9d7e63e69cc817c1218/source/Dgraph/github.com/dgraph-io/dgo/protos/api.proto#L33) I see `option java_package =...