Skip to content

Instantly share code, notes, and snippets.

View Ice2burn's full-sized avatar

Владимир Ермаков Ice2burn

View GitHub Profile
@liamkernighan
liamkernighan / AppDbContext.cs
Last active January 3, 2022 20:02
Entity Framework Bot State for Bot Framework SDKv4 (to store in SQL database IStorage implementation)
namespace DAL
{
public class AppDbContext : DbContext
{
private readonly string defaultConnectionString;
#region tables
public DbSet<EFBotState> BotStates { get; set; }