using Microsoft.EntityFrameworkCore; namespace Kruzya.TelegramBot.Core.EF; /// /// EF database context with autosaving feature. /// public abstract partial class AutoSaveDbContext : DbContext { protected AutoSaveDbContext(DbContextOptions options) : base(options) {} }