检查 SQL 跟踪日志
Check SQL trace log
根据this tutorial的推荐,我添加了以下内容
public BookServiceContext() : base("name=BookServiceContext")
{
// Keeps track of SQL queries that EF generates
this.Database.Log = s => System.Diagnostics.Debug.WriteLine(s);
}
我的数据库上下文模型的构造函数,以便跟踪 Entity Framework 生成的 SQL 查询。
教程忘了说日志文件在哪里,所以没法查看。
我会在哪个目录中找到该文件?我检查了 SQL 的安装位置,但 none 的文件是正确的。
我知道,听起来很笨,但有人可以帮忙吗?
该行代码会将其输出写入 Visual Studio "Output" window。有关 EF 日志记录的详细信息,请参阅 Logging and Intercepting Database Operations。
根据this tutorial的推荐,我添加了以下内容
public BookServiceContext() : base("name=BookServiceContext")
{
// Keeps track of SQL queries that EF generates
this.Database.Log = s => System.Diagnostics.Debug.WriteLine(s);
}
我的数据库上下文模型的构造函数,以便跟踪 Entity Framework 生成的 SQL 查询。
教程忘了说日志文件在哪里,所以没法查看。
我会在哪个目录中找到该文件?我检查了 SQL 的安装位置,但 none 的文件是正确的。
我知道,听起来很笨,但有人可以帮忙吗?
该行代码会将其输出写入 Visual Studio "Output" window。有关 EF 日志记录的详细信息,请参阅 Logging and Intercepting Database Operations。