Skip to content

Instantly share code, notes, and snippets.

@fredyfx
Created December 25, 2018 00:51
Show Gist options
  • Save fredyfx/21f2145cc1dc79c3fb5e8dd96849be2c to your computer and use it in GitHub Desktop.
Save fredyfx/21f2145cc1dc79c3fb5e8dd96849be2c to your computer and use it in GitHub Desktop.
Agregando las opciones a la base DbContext
using Microsoft.EntityFrameworkCore;
using AdvientoCSharpDic2018.Models;
namespace AdvientoCSharpDic2018
{
public class AdvientoContext : DbContext
{
public AdvientoContext(DbContextOptions<AdvientoContext> options) : base(options)
{
}
public DbSet<Producto> Productos {get;set;}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment