Software_Engineering_Field_.../SiteManagementSystem(Softwa.../Service/SQLService.cs

19 lines
521 B
C#

using Microsoft.EntityFrameworkCore;
using SiteManagementSystem_SoftwareEngineering_.Entity;
namespace SiteManagementSystem_SoftwareEngineering_.Service
{
public class SQLService : DbContext
{
public SQLService(DbContextOptions<SQLService> options)
: base(options)
{
Database.EnsureCreated();
}
public DbSet<User> Users { get; set; }
public DbSet<Field> Fields { get; set; }
public DbSet<FieldRecord> UserFieldRecords{get;set;}
}
}