survey-webapp/SurveyBackend/SurveyBackend.Infrastructure/Data/DataContext.cs
2025-03-25 22:05:28 +05:00

15 lines
No EOL
370 B
C#

using Microsoft.EntityFrameworkCore;
using SurveyBackend.Core.Models;
namespace SurveyBackend.Infrastructure.Data;
public class DataContext : DbContext
{
public DbSet<User> Users { get; set; }
public DbSet<Group> Groups { get; set; }
public DataContext(DbContextOptions<DataContext> options) : base(options)
{
Database.EnsureCreated();
}
}