I have followed this microsoft tutorial to create gRPC service and client. Now i have problem with generating gRPC client class.
To get data i use this method, but i doesn't seem right. I wish I could inject client using AddGrpcClient but i can't find any generated client gRPC classes.
using var channel = GrpcChannel.ForAddress("http://localhost:5053");
var client = channel.CreateGrpcService<IFullProjectInfoService>();
var reply = await client.GetFullProjectInfoAsync(
new FullProjectInfoRequest { ProjectId = 1, UserId = 1 }
);