Skip to content

Instantly share code, notes, and snippets.

@bjornmicallef
Created December 10, 2020 20:58
Show Gist options
  • Save bjornmicallef/b682df621821fc12784d4ea6e5ac7e74 to your computer and use it in GitHub Desktop.
Save bjornmicallef/b682df621821fc12784d4ea6e5ac7e74 to your computer and use it in GitHub Desktop.
public partial class StockNotificationContext : DbContext
{
public StockNotificationContext()
{
}
public StockNotificationContext(DbContextOptions<StockNotificationContext> options) : base(options)
{
}
public virtual DbSet<tblSellers> tblSellers { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment