17 lines
475 B
C#
17 lines
475 B
C#
using VOL.Entity.MappingConfiguration;
|
|
using VOL.Entity.DomainModels;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace VOL.Entity.MappingConfiguration
|
|
{
|
|
public class Sys_WorkFlowTableAuditLogMapConfig : EntityMappingConfiguration<Sys_WorkFlowTableAuditLog>
|
|
{
|
|
public override void Map(EntityTypeBuilder<Sys_WorkFlowTableAuditLog>
|
|
builderTable)
|
|
{
|
|
//b.Property(x => x.StorageName).HasMaxLength(45);
|
|
}
|
|
}
|
|
}
|
|
|