Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vijayantkatyal/69aaf6ffc853c60c52fe to your computer and use it in GitHub Desktop.
Save vijayantkatyal/69aaf6ffc853c60c52fe to your computer and use it in GitHub Desktop.
public static class DbContextExtensions
{
public static void LogToConsole(this DbContext context)
{
IServiceProvider contextServices = ((IDbContextServices)context).ScopedServiceProvider;
var loggerFactory = contextServices.GetRequiredService<ILoggerFactory>();
loggerFactory.AddConsole(LogLevel.Verbose);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment