Skip to content

Instantly share code, notes, and snippets.

View liamkernighan's full-sized avatar
🎯
Focusing

liamkernighan

🎯
Focusing
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; }