Files
2026-07-21 13:59:38 +07:00

30 lines
1003 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 ScrappingConfiguration : IEntityTypeConfiguration<Scrapping>
{
public void Configure(EntityTypeBuilder<Scrapping> builder)
{
builder.Property(e => e.AutoNumber)
.HasMaxLength(GlobalConsts.StringLengthShort);
builder.Property(e => e.Description)
.HasMaxLength(GlobalConsts.StringLengthMedium);
builder.Property(e => e.WarehouseId)
.HasMaxLength(GlobalConsts.StringLengthId);
builder.HasOne(e => e.Warehouse)
.WithMany()
.HasForeignKey(e => e.WarehouseId)
.OnDelete(DeleteBehavior.NoAction);
builder.HasIndex(e => e.AutoNumber).IsUnique();
builder.HasIndex(e => e.ScrappingDate);
builder.HasIndex(e => e.WarehouseId);
}
}