我有如下情况,这给了我错误,看起来像超时。它缺少一些记录插入。错误如下:
IdeaBlade.EntityModel.AsyncProcessor 1.Signal 1.<>c__DisplayClass2.<.ctor>b__0(TArgs args)
at IdeaBlade.EntityModel.AsyncProcessor
() 在 IdeaBlade.EntityModel.AsyncProcessor`1.b__5(Object x)
InnerException:[HttpRequestTimedOutWithoutDetail] 参数:调试资源字符串不可用。通常,关键和论据提供了足够的信息来诊断问题。请参阅http://go.microsoft.com/fwlink/?linkid=106663&Version=5.0.10411.00&File=System.ServiceModel.dll&Key=HttpRequestTimedOutWithoutDetail
在 IdeaBlade.EntityModel.EntityServerProxy.<> c_DisplayClass14.b _13() 在 IdeaBlade.EntityModel.EntityServerProxy.ExecFunc[T](Func 1 func, Boolean funcWillHandleException)
at IdeaBlade.EntityModel.EntityServerProxy.ExecuteOnServer[T](Func
1 func, Boolean funcWillHandleException) 在 IdeaBlade.EntityModel.EntityServerProxy.InvokeServerMethod(SessionBundle sessionBundle, ITypeWrapper entityManagerType, IdeaBlade.EntityModel.EntityMa 处的字符串类型名称、字符串方法名称、对象 [] 参数)
任何想法如何处理它?谢谢:)
......
.ExecuteAsync(op =>
{
var cust =Customers.Where(p => p.IsSelected).ToList();
..........................
Ships.ForEach(.......
...........
EntityManager.SalesGetSalesQuery(
..............
.ExecuteAsync(opn =>
{
................
});
p.UpdateOrders(copyOrders);
Orders.Add(copyOrders);
Save();
});