Guest User

Untitled

a guest
Feb 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class MyDbContext : DbContext
  2. {
  3.  
  4. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
  5. {
  6. base.OnConfiguring(optionsBuilder);
  7. optionsBuilder.ConfigureWarnings(warning =>
  8. {
  9. warning.Throw(RelationalEventId.QueryClientEvaluationWarning);
  10. });
  11. }
  12. }
Add Comment
Please, Sign In to add comment