18 lines
597 B
C#
18 lines
597 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using ShardingCore.Test3x.Domain.Entities;
|
|
|
|
namespace ShardingCore.Test3x.Domain.Maps
|
|
{
|
|
public class LogDayMap:IEntityTypeConfiguration<LogDay>
|
|
{
|
|
public void Configure(EntityTypeBuilder<LogDay> builder)
|
|
{
|
|
builder.HasKey(o => o.Id);
|
|
builder.Property(o => o.LogLevel).IsRequired().IsUnicode(false).HasMaxLength(32);
|
|
builder.Property(o => o.LogBody).IsRequired().HasMaxLength(256);
|
|
builder.ToTable(nameof(LogDay));
|
|
}
|
|
}
|
|
}
|