[성현모] 스캐폴드 옵션추가

This commit is contained in:
SHM
2025-10-30 12:28:28 +09:00
parent bb44f2af79
commit 765f6c6378
4 changed files with 4 additions and 4 deletions

View File

@ -11,13 +11,13 @@ public partial class CPMetaContext : DbContext
{
}
public virtual DbSet<tWbm> tWbms { get; set; }
public virtual DbSet<tWbms> tWbms { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.UseCollation("SQL_Latin1_General_CP1_CI_AS");
modelBuilder.Entity<tWbm>(entity =>
modelBuilder.Entity<tWbms>(entity =>
{
entity.HasKey(e => e.cProductID).HasName("PK_cProductKey");

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace SystemX.Core.DB;
public partial class tWbm
public partial class tWbms
{
public string cProductID { get; set; } = null!;