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