Admin
9 小时以前 1cd9280bbecf557f8978ad3839f14827ff9f4d34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using WIDESEA.Entity.MappingConfiguration;
using WIDESEA.Entity.DomainModels;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
 
namespace WIDESEA.Entity.MappingConfiguration
{
    public class Dt_EmptyPalletMapConfig : EntityMappingConfiguration<Dt_EmptyPallet>
    {
        public override void Map(EntityTypeBuilder<Dt_EmptyPallet>
        builderTable)
        {
          //b.Property(x => x.StorageName).HasMaxLength(45);
        }
     }
}