Laservall_manager_system/LM.Entity/MappingConfiguration/form/FormCollectionObjectMapConf...

17 lines
457 B
C#

using LM.Entity.MappingConfiguration;
using LM.Entity.DomainModels;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace LM.Entity.MappingConfiguration
{
public class FormCollectionObjectMapConfig : EntityMappingConfiguration<FormCollectionObject>
{
public override void Map(EntityTypeBuilder<FormCollectionObject>
builderTable)
{
//b.Property(x => x.StorageName).HasMaxLength(45);
}
}
}