错误一:
套接字连接已中止。这可能是由于处理消息时出错或远程主机超过接收超时或者潜在的网络资源问题导致的。本地套接字超时是“00:00:59.9062500”。
private string FormatWhere(object beFormatWhere)
{
string where = Convert.ToString(beFormatWhere).ToLower();
if (where.IndexOfAny(new char[] { '=', '>', '<' }) == -1 && !where.Contains("like") && !where.Contains("between") && !where.Contains("in"))
{
return entity.PrimaryKey + "=" + where;
}
return where;
}
版权声明:本文原创发表于博客园,作者为路过秋天,原文链接:http://www.cnblogs.com/cyq1162/archive/2010/07/20/1781575.html
时间: 2024-09-28 02:18:38