Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nbarbettini/02abc016237e4b051be7b5172c1ff80f to your computer and use it in GitHub Desktop.
Save nbarbettini/02abc016237e4b051be7b5172c1ff80f to your computer and use it in GitHub Desktop.
DbContext with constructor for EF Core InMemory
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