| 12345678910111213141516171819202122 |
- using Domain.Entities.Forum.Posts;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore.Metadata.Builders;
- namespace Infrastructure.Persistence.Configurations.Forum.Posts;
- public sealed class PostFileConfiguration : IEntityTypeConfiguration<PostFile>
- {
- public void Configure(EntityTypeBuilder<PostFile> builder)
- {
- builder.HasIndex(x => x.BoardID);
- builder.HasIndex(x => x.PostID);
- builder.HasIndex(x => x.UUID).IsUnique();
- builder.HasOne(x => x.Board).WithMany().HasForeignKey(x => x.BoardID).OnDelete(DeleteBehavior.Restrict);
- builder.HasOne(x => x.Post).WithMany(x => x.PostFile).HasForeignKey(x => x.PostID).OnDelete(DeleteBehavior.Cascade);
- builder.ToTable("PostFile", x => x.HasComment("게시글 파일"));
- builder.HasKey(x => x.ID);
- builder.Property(x => x.ID).ValueGeneratedOnAdd().HasComment("PK");
- }
- }
|