21 lines
742 B
C#
21 lines
742 B
C#
using Indotalent.Data.Entities;
|
|
using Indotalent.Shared.Consts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace Indotalent.Infrastructure.Database.MsSQL.Configuration;
|
|
|
|
public class NegativeAdjustmentConfiguration : IEntityTypeConfiguration<NegativeAdjustment>
|
|
{
|
|
public void Configure(EntityTypeBuilder<NegativeAdjustment> builder)
|
|
{
|
|
builder.Property(e => e.AutoNumber)
|
|
.HasMaxLength(GlobalConsts.StringLengthShort);
|
|
|
|
builder.Property(e => e.Description)
|
|
.HasMaxLength(GlobalConsts.StringLengthMedium);
|
|
|
|
builder.HasIndex(e => new { e.TenantId, e.AutoNumber }).IsUnique();
|
|
builder.HasIndex(e => e.AdjustmentDate);
|
|
}
|
|
} |