Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created June 19, 2020 22:58
Show Gist options
  • Save httpmurilo/bc6f036c11fcf46f28f33f9327cd40b1 to your computer and use it in GitHub Desktop.
Save httpmurilo/bc6f036c11fcf46f28f33f9327cd40b1 to your computer and use it in GitHub Desktop.
using Faculdade.Api.Model;
using Microsoft.EntityFrameworkCore;
namespace Faculdade.Api.Data
{
public class DataContext: DbContext
{
public DataContext(DbContextOptions<DataContext> options) : base(options)
{}
public DbSet<Autor> Autores {get;set;}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment