mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
13 lines
303 B
C#
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)
|
||
|
|
{}
|
||
|
|
}
|