Moshaverino/Moshaverino.Core/Models/MoshaverinoContext.cs

15 lines
404 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
namespace Moshaverino.Core.Models
{
public class MoshaverinoContext : DbContext
{
public MoshaverinoContext(DbContextOptions<MoshaverinoContext> contextOptions) : base(contextOptions) { }
public DbSet<Student> Students { get; set; }
}
}