2021-06-27 .NET高级班 75-ASP.NET Core Grpc在Core中的使用
一:依赖注入额外引入包:Grpc.Net.ClientFactoryservices.AddGrpcClient<CustomMath.CustomMathClient>(optons =>{ optons.Address = new Uri("https://localhost:5001");});private readonly CustomMath.CustomMathClient _MathClient = null;p