20 lines
589 B
C#
20 lines
589 B
C#
using ErsatzTV.Core.Domain;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations;
|
|
|
|
public class LibraryFolderConfiguration : IEntityTypeConfiguration<LibraryFolder>
|
|
{
|
|
public void Configure(EntityTypeBuilder<LibraryFolder> builder)
|
|
{
|
|
builder.ToTable("LibraryFolder");
|
|
|
|
builder.HasOne(f => f.Parent)
|
|
.WithMany(p => p.Children)
|
|
.HasForeignKey(f => f.ParentId)
|
|
.IsRequired(false)
|
|
.OnDelete(DeleteBehavior.Restrict);
|
|
}
|
|
}
|