Files
blazor-saas-crm/Infrastructure/Database/MsSQL/Configuration/NegativeAdjustmentConfiguration.cs
T
2026-07-21 14:14:44 +07:00

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