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

13 lines
303 B
C#
Raw Normal View History

2022-01-22 21:54:11 +03:00
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)
{}
}