Skip to content

Instantly share code, notes, and snippets.

@fugaku
Created February 16, 2019 02:01
Show Gist options
  • Select an option

  • Save fugaku/cac42848f1fe9ff7416fa5a1ae401b61 to your computer and use it in GitHub Desktop.

Select an option

Save fugaku/cac42848f1fe9ff7416fa5a1ae401b61 to your computer and use it in GitHub Desktop.
EF Core Getting Started
public class AppContext : DbContext
{
public AppContext(DbContextOptions<AppContext> options)
: base(options)
{ }
public DbSet<Blog> Blogs { get; set; }
public DbSet<Post> Posts { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment