using APT.BaseData.Domain.Entities; using APT.Infrastructure.EF.Map; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Metadata.Builders; namespace APT.BaseData.Data.Mapping { public class PFPageCustomMap : APTEntityBaseMap { public override void Configure(EntityTypeBuilder builder) { base.Configure(builder); builder.HasOne(t => t.Nav_PageForm). WithMany().HasForeignKey(t => t.PAGE_FORM_ID).OnDelete(DeleteBehavior.Restrict); builder.Property(t => t.CODE).HasMaxLength(100); builder.Property(t => t.COMPONENT_NAME).HasMaxLength(300); builder.Property(t => t.CUSTOM_PARAMS).HasMaxLength(600); builder.Property(t => t.CUSTOM_API).HasMaxLength(100); } } }