using Microsoft.EntityFrameworkCore; namespace Chatbot.Api.Domain.Data.DbContexts { public class ChatDbContext : DbContext { public ChatDbContext(DbContextOptions options) : base(options) { base.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.TrackAll; base.ChangeTracker.AutoDetectChangesEnabled = true; } } }