我在for循环中调用WCF方法。我在这方面有几个问题,
1)在这种情况下,如果在循环中发生错误,在哪里重新打开连接?
2)何处关闭连接?
MyProxy.DemoServiceClient wsDemo = new MyProxy.DemoServiceClient();
foreach (DataRow dataRow in dataTABLE.Rows)
{
Product product = new Product();
//Populate product using DataRow.
try
{
wsDemo.CreateProduct(product);
}
catch (Exception exc)
{
}
}
答案 0 :(得分:1)