-
Notifications
You must be signed in to change notification settings - Fork 15
Closed as not planned
Labels
Description
I'm trying to follow the readme and I'm getting a Grpc error.
instead of
var client = new DgraphClient(new Channel("127.0.0.1:9080", ChannelCredentials.Insecure));I'm writing
var channel = GrpcChannel.ForAddress("http://127.0.0.1:9080");
var client = new DgraphClient(channel);Then I'm trying to alter the database without success. Is there a special grpc lib I should use?