Skip to content

Instantly share code, notes, and snippets.

@boubkhaled
Created June 5, 2022 14:23
Show Gist options
  • Save boubkhaled/280bf53ebe4409e6840b1e53469cea5d to your computer and use it in GitHub Desktop.
Save boubkhaled/280bf53ebe4409e6840b1e53469cea5d to your computer and use it in GitHub Desktop.
Entityframework Logging - Log sql queries in EF Core -
public class MyDbContext : DbContext
    {
        public MyDbContext(DbContextOptions<MyDbContext> options) : base(options) 
        { 
            
        }

        // .....

        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            optionsBuilder.LogTo(x => Debug.WriteLine(x));
        }
    }
    ```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment