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

17 lines
411 B
C#
Raw Normal View History

2024-10-30 17:52:22 +08:00

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; }
}
}