public class MyDbContext : DbContext
{
public MyDbContext(DbContextOptions<MyDbContext> options) : base(options)
{
}
// .....
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.LogTo(x => Debug.WriteLine(x));
}
}
```
Created
June 5, 2022 14:23
-
-
Save boubkhaled/280bf53ebe4409e6840b1e53469cea5d to your computer and use it in GitHub Desktop.
Entityframework Logging - Log sql queries in EF Core -
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment