17 lines
411 B
C#
17 lines
411 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; }
|
|
}
|
|
}
|