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