YD_SmartSports.Api/VOL.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs

17 lines
460 B
C#
Raw Normal View History

2025-06-06 16:00:39 +08:00
using VOL.Entity.MappingConfiguration;
using VOL.Entity.DomainModels;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace VOL.Entity.MappingConfiguration
{
public class FormCollectionObjectMapConfig : EntityMappingConfiguration<FormCollectionObject>
{
public override void Map(EntityTypeBuilder<FormCollectionObject>
builderTable)
{
//b.Property(x => x.StorageName).HasMaxLength(45);
}
}
}