Created
January 9, 2021 11:27
-
-
Save icebeam7/e10a3365a333ec3b2c83410f8a548d5c to your computer and use it in GitHub Desktop.
Context/UniversidadContexto.cs
This file contains 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
using Microsoft.EntityFrameworkCore; | |
using UniversidadWebsite.Models; | |
namespace UniversidadWebsite.Context | |
{ | |
public class UniversidadContexto : DbContext | |
{ | |
public UniversidadContexto(DbContextOptions<UniversidadContexto> opciones) : base(opciones) | |
{ | |
} | |
public DbSet<Estudiante> Estudiantes { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment