using Microsoft.EntityFrameworkCore; using bitforum.Models; public class DefaultDbContext : DbContext { public DefaultDbContext(DbContextOptions options) : base(options) { } // Config 테이블과 매핑 public DbSet Config { get; set; } }