Skip to content

Instantly share code, notes, and snippets.

@dileno
Last active September 12, 2019 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dileno/830fe1b579de0ddbedbd37ebc5c77f88 to your computer and use it in GitHub Desktop.
Save dileno/830fe1b579de0ddbedbd37ebc5c77f88 to your computer and use it in GitHub Desktop.
BlogPostsContext
public class BlogPostsContext : DbContext
{
public BlogPostsContext (DbContextOptions<BlogPostsContext> options)
: base(options)
{
}
public DbSet<BlogPost> BlogPosts { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment