YD_SmartSports.Api/VOL.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs
2025-06-06 16:00:39 +08:00

17 lines
460 B
C#

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);
}
}
}