Log Queries executed by Entity Framework DbContext

后端 未结 5 1770
夕颜
夕颜 2020-11-27 16:16

I\'m using EF 6.0 with LINQ in MVC 5 project. I want to log all the SQL queries executed by the Entity Framework DbContext for debugging/performance-measurement purpose.

相关标签:
5条回答
  • 2020-11-27 16:54

    Logging and Intercepting Database Operations article at MSDN is what your are looking for.

    The DbContext.Database.Log property can be set to a delegate for any method that takes a string. Most commonly it is used with any TextWriter by setting it to the “Write” method of that TextWriter. All SQL generated by the current context will be logged to that writer. For example, the following code will log SQL to the console:

    using (var context = new BlogContext())
    {
        context.Database.Log = Console.Write;
    
        // Your code here...
    }
    
    0 讨论(0)
  • 2020-11-27 17:02

    EF Core logging automatically integrates with the logging mechanisms of .NET Core. Example how it can be used to log to console:

    public class SchoolContext : DbContext
    {
        //static LoggerFactory object
        public static readonly ILoggerFactory loggerFactory = new LoggerFactory(new[] {
                  new ConsoleLoggerProvider((_, __) => true, true)
            });
    
        //or
        // public static readonly ILoggerFactory loggerFactory  = new LoggerFactory().AddConsole((_,___) => true);
    
        public SchoolContext():base()
        {
    
        }
    
        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            optionsBuilder.UseLoggerFactory(loggerFactory)  //tie-up DbContext with LoggerFactory object
                .EnableSensitiveDataLogging()  
                .UseSqlServer(@"Server=.\SQLEXPRESS;Database=SchoolDB;Trusted_Connection=True;");
        }
    
        public DbSet<Student> Students { get; set; }
    }
    

    If you would like to log to output window use this instead:

    public static readonly ILoggerFactory loggerFactory = new LoggerFactory(new[] {
          new DebugLoggerProvider()
    });
    

    https://www.entityframeworktutorial.net/efcore/logging-in-entityframework-core.aspx

    0 讨论(0)
  • 2020-11-27 17:03

    Entity Framework Core 3

    From this article

    Create a factory and set the filter.

    var loggerFactory = LoggerFactory.Create(builder =>
    {
        builder
        .AddConsole((options) => { })
        .AddFilter((category, level) =>
            category == DbLoggerCategory.Database.Command.Name
            && level == LogLevel.Information);
    });
    

    Tell the DbContext to use the factory in the OnConfiguring method:

    optionsBuilder.UseLoggerFactory(_loggerFactory);
    
    0 讨论(0)
  • 2020-11-27 17:12

    If you've got a .NET Core setup with a logger, then EF will log its queries to whichever output you want: debug output window, console, file, etc.

    You merely need to configure the 'Information' log level in your appsettings. For instance, this has EF logging to the debug output window:

    "Logging": {
      "PathFormat": "Logs/log-{Date}.txt",
      "IncludeScopes": false,
      "Debug": {
        "LogLevel": {
          "Default": "Information",
          "System": "Information",
          "Microsoft": "Information"
        }
      },
      "Console": {
        "LogLevel": {
          "Default": "Information",
          "System": "Warning",
          "Microsoft": "Warning"
        }
      },
      "File": {
        "LogLevel": {
          "Default": "Information",
          "System": "Warning",
          "Microsoft": "Warning"
        }
      },
      "LogLevel": {
        "Default": "Information",
        "System": "Warning",
        "Microsoft": "Warning"
      }
    }
    
    0 讨论(0)
  • 2020-11-27 17:16

    You can use this line to log the SQL queries to the Visual Studio "Output" window only and not to a console window, again in Debug mode only.

    public class YourContext : DbContext
    {   
        public YourContext()
        {
            Database.Log = sql => Debug.Write(sql);
        }
    }
    
    0 讨论(0)
提交回复
热议问题