using Microsoft.EntityFrameworkCore; using Server.System; namespace Server.SQL { public abstract class SQL : DbContext where T : class { public abstract DbSet Table { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { if (!optionsBuilder.IsConfigured) { optionsBuilder.UseNpgsql(STATICS.SQL_URL); // 다른 옵션들을 추가할 수 있습니다. } } } }