Created
July 28, 2017 15:55
-
-
Save nbarbettini/02abc016237e4b051be7b5172c1ff80f to your computer and use it in GitHub Desktop.
DbContext with constructor for EF Core InMemory
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 ApiDbContext : DbContext | |
{ | |
public ApiDbContext(DbContextOptions<ApiDbContext> options) | |
: base(options) | |
{ | |
} | |
// DbSets... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment