问题描述
我正在将.NET Framework API迁移到.NET Core。 代理使用Visual Studio 2017工具生成并使用ChannelFactory公开。它将保存在.NET Core类库中。 我正在将代理库消费到.NET Core API中。
我有一个非常快的外部服务。 但是,当我在.NET Core API中使用此服务时,会花费很多时间。甚至比.NET Framework还要慢。
private readonly ABCFactory abc = null;
var channel = abc.CreateService(id); // CreateService is a vertual method in other library.
public virtual T CreateService(int id);
using (new OperationContextScope(channel))
{
//Service call`enter code here`
var response = channel.GetABCAsync(request).Result;
}
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)