The policy with name 'BLLExceptionPolicy' cannot be found. Exception handling aborted.
接口中空节点造成的.在过滤数据的时候,将空格拼接的string类型一并过滤.不然在存储过程中会对有赋值的字段进行校验(推测校验过程报错了,因为封装的关系得手动提取参数,进行测试)
if (ds.Tables[2].Columns.Contains("FUCHABH"))
{
if (String.IsNullOrWhiteSpace(ds.Tables[2].Rows[0]["FUCHABH"].ToString()) == false)
{
FUCHABH = ds.Tables[2].Rows[0]["FUCHABH"].ToString();
}
}