如何使用 Enterprise Library 6 为 WCF 服务应用程序使用数据库日志记录
How to use database logging for a WCF Service application using Enterprise Library 6
对于 Enterprise Library 6 日志记录,我们需要在 Startup.cs 中为 Web 应用程序添加下面提到的行,然后才可以使用数据库日志记录。
DatabaseFactory.SetDatabaseProviderFactory(new DatabaseProviderFactory());
同样的方法,我应该在哪里添加上面提到的 WCF 服务应用程序使用数据库日志记录的行???
我们需要在 WCF 服务应用程序中添加 Global.asax
,然后使用下面提到的代码
protected void Application_Start(object sender, EventArgs e)
{
DatabaseFactory.SetDatabaseProviderFactory(new DatabaseProviderFactory());
}
那么一切都会完美的...享受
对于 Enterprise Library 6 日志记录,我们需要在 Startup.cs 中为 Web 应用程序添加下面提到的行,然后才可以使用数据库日志记录。
DatabaseFactory.SetDatabaseProviderFactory(new DatabaseProviderFactory());
同样的方法,我应该在哪里添加上面提到的 WCF 服务应用程序使用数据库日志记录的行???
我们需要在 WCF 服务应用程序中添加 Global.asax
,然后使用下面提到的代码
protected void Application_Start(object sender, EventArgs e)
{
DatabaseFactory.SetDatabaseProviderFactory(new DatabaseProviderFactory());
}
那么一切都会完美的...享受