Elmah MVC 无法加载文件或程序集 Elmah.SqlServer
Elmah MVC Could not load file or assembly Elmah.SqlServer
我从 nuget 包管理控制台安装了 elmah.mvc.2.1.2。我运行脚本ELMAH-1.2-db-SQLServer.sql
修改数据库
我在 web.config
的 configuration
部分添加了
<elmah>
<errorLog type="Elmah.SqlErrorLog, Elmah.SqlServer" connectionStringName="DefaultConnection"/>
</elmah>
我知道 DefaultConnection
适用于我们在应用程序中所做的所有其他事情。
我编写了一个引发错误的操作 /Home/TestError
。抛出错误但没有在数据库中创建任何条目。当我导航到 /elmah
时,出现错误 Could not load file or assembly 'Elmah.SqlServer' or one of its dependencies.
我从包管理器控制台重新安装了 Elmah,但没有任何区别。 bin 文件夹中没有 Elmah.SqlServer
,所以我无法手动添加引用。
SqlErrorLog 位于 Elmah 程序集中(不是 Elmah.SqlServer)。请尝试以下操作:
<elmah>
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="DefaultConnection"/>
</elmah>
我从 nuget 包管理控制台安装了 elmah.mvc.2.1.2。我运行脚本ELMAH-1.2-db-SQLServer.sql
修改数据库
我在 web.config
的 configuration
部分添加了
<elmah>
<errorLog type="Elmah.SqlErrorLog, Elmah.SqlServer" connectionStringName="DefaultConnection"/>
</elmah>
我知道 DefaultConnection
适用于我们在应用程序中所做的所有其他事情。
我编写了一个引发错误的操作 /Home/TestError
。抛出错误但没有在数据库中创建任何条目。当我导航到 /elmah
时,出现错误 Could not load file or assembly 'Elmah.SqlServer' or one of its dependencies.
我从包管理器控制台重新安装了 Elmah,但没有任何区别。 bin 文件夹中没有 Elmah.SqlServer
,所以我无法手动添加引用。
SqlErrorLog 位于 Elmah 程序集中(不是 Elmah.SqlServer)。请尝试以下操作:
<elmah>
<errorLog type="Elmah.SqlErrorLog, Elmah" connectionStringName="DefaultConnection"/>
</elmah>