所以我在实体框架期间收到了Win32Exception" Any"交易。数据库计算机处于脱机状态,因此可以预期。它是一个监控应用程序,所以我想记录机器不可用,但它没有发现错误。
错误是:(由Elmah报道)
System.ComponentModel.Win32Exception 找不到网络路径
System.Data.SqlClient.SqlException(0x80131904):建立与SQL Server的连接时发生与网络相关或特定于实例的错误。服务器未找到或无法访问。验证实例名称是否正确,以及SQL Server是否配置为允许远程连接。 (提供者:命名管道提供程序,错误:40 - 无法打开与SQL Server的连接)---> System.ComponentModel.Win32Exception(0x80004005):找不到网络路径 在System.Data.SqlClient.SqlInternalConnection.OnError(SqlException异常,Boolean breakConnection,Action`1 wrapCloseInAction)
好的,所以这是我的(伪)代码:
if(Monitor.TryEnter(Variables))
try
{
foreach(var thing in things)
{
try
{
using(var ctx = new context())
{
Do Stuff...
if(thing.Any()) <-- Error
Do more stuff... like look for problems.
}
}
catch(Win32Exception)
{
Add exception to list of problems.;
}
catch(exception)
{
throw; //I was just seeing if this would help, it didn't
}
}
Return list of problems
}
catch(Exception ex)
{
Elmah.ErrorLog.GetDefault(null).Log(new Elmah.Error(ex));
}
finally
{
Monitor.Exit(variables)
}
所以我希望你能看到Win32Exception应该被捕获,但它不是 - Elmah正在报告它。正确定位和报告在数据库中找到的错误。这一切都有效,直到这个Win32Exception发生,然后它似乎忽略了我的捕获。