Created
February 16, 2019 02:01
-
-
Save fugaku/cac42848f1fe9ff7416fa5a1ae401b61 to your computer and use it in GitHub Desktop.
EF Core Getting Started
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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