Files
telegram-bot/Core/EF/AutoSaveDbContext.cs
T

13 lines
303 B
C#

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