如何关闭Entity Framework 6.1日志记录?

时间:2014-03-28 10:12:07

标签: asp.net asp.net-mvc entity-framework entity-framework-6

文档说明我可以打开这样的日志记录:

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 ?
}

我没有看到有关如何关闭它的任何信息。有人能告诉我怎么做吗?

1 个答案:

答案 0 :(得分:4)

致电

context.Database.Log = null;

然后你已经开始记录