Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 7, 2020 01:00
Show Gist options
  • Save httpmurilo/33106fe36b33d09bbf400a85e9f54448 to your computer and use it in GitHub Desktop.
Save httpmurilo/33106fe36b33d09bbf400a85e9f54448 to your computer and use it in GitHub Desktop.
DataContext
public class DataContext : DbContext
{
public DataContext(DbContextOptions<DataContext> options) : base(options)
{
}
public DbSet<Autor> Autores {get;set;}
public DbSet<Curso> Cursos {get;set;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment