csharp 实体框架核心 - SQL查询控制台日志记录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 实体框架核心 - SQL查询控制台日志记录相关的知识,希望对你有一定的参考价值。

public class DemoDbContext : DbContext
{
    public DemoDbContext(DbContextOptions<DemoDbContext> options) : base(options)
    {
    }

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    {
        optionsBuilder.UseLoggerFactory(new LoggerFactory(new[] {new SqlQueryLogProvider()}));

        base.OnConfiguring(optionsBuilder);
    }
}
public class SqlLogger : ILogger
{
    public const string CommandExecutingEventName = "Microsoft.EntityFrameworkCore.Database.Command.CommandExecuting";

    public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception exception, Func<TState, Exception, string> formatter)
    {
        if (eventId.Name == CommandExecutingEventName)
        {
            string message = state.ToString();

            message = message.Substring(message.IndexOf("\n", StringComparison.InvariantCulture) + 1);

            Console.WriteLine("- - - - - SQL Command - - - - -");

            Console.ForegroundColor = ConsoleColor.Magenta;
            Console.WriteLine();
            Console.WriteLine(message);
            Console.WriteLine();
            Console.ForegroundColor = ConsoleColor.Black;
        }
    }

    public bool IsEnabled(LogLevel logLevel) => true;

    public IDisposable BeginScope<TState>(TState state) => null;
}
public class SqlQueryLogProvider : ILoggerProvider
{
    public void Dispose()
    {
    }

    public ILogger CreateLogger(string categoryName)
    {
        return new SqlLogger();
    }
}

以上是关于csharp 实体框架核心 - SQL查询控制台日志记录的主要内容,如果未能解决你的问题,请参考以下文章

实体框架核心中等效的 SQL RIGHT 函数

csharp 使用实体框架的基本控制台应用程序6

csharp 使用实体框架的基本控制台应用程序6

csharp 使用实体框架的基本控制台应用程序6

csharp 使用实体框架的基本控制台应用程序6

实体框架核心中的截断表