This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2023_Kanban/NG_2023_Kanban.DataLayer/EntityConfiguration/ColumnConfiguration.cs
2023-05-17 12:36:49 +03:00

24 lines
771 B
C#

using NG_2023_Kanban.DataLayer.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace NG_2023_Kanban.DataLayer.EntityConfiguration
{
public class ColumnConfiguration : IEntityTypeConfiguration<Column>
{
public void Configure(EntityTypeBuilder<Column> builder)
{
builder.HasIndex(x => x.Id);
builder.Property(x => x.Id).IsRequired();
builder.Property(x => x.Name).IsRequired();
builder.Property(x => x.Name).HasMaxLength(100);
builder
.HasOne(x => x.Board)
.WithMany(x => x.Columns)
.HasForeignKey(x => x.BoardId)
.HasPrincipalKey(x => x.Id);
}
}
}