文档说明我可以打开这样的日志记录:
using (var context = new BlogContext())
{
context.Database.Log = Console.Write; // like this
context.Database.Log = logInfo => Debug.WriteLine(logInfo); // or like this
// Your code here...
// How can I turn off logging here ?
}
我没有看到有关如何关闭它的任何信息。有人能告诉我怎么做吗?
答案 0 :(得分:4)
致电
context.Database.Log = null;
然后你已经开始记录
了