mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
683 B
21 lines
683 B
using ErsatzTV.Core.Domain.Scheduling; |
|
using Microsoft.EntityFrameworkCore; |
|
using Microsoft.EntityFrameworkCore.Metadata.Builders; |
|
|
|
namespace ErsatzTV.Infrastructure.Data.Configurations.Scheduling; |
|
|
|
public class DecoTemplateGroupConfiguration : IEntityTypeConfiguration<DecoTemplateGroup> |
|
{ |
|
public void Configure(EntityTypeBuilder<DecoTemplateGroup> builder) |
|
{ |
|
builder.ToTable("DecoTemplateGroup"); |
|
|
|
builder.HasIndex(b => b.Name) |
|
.IsUnique(); |
|
|
|
builder.HasMany(b => b.DecoTemplates) |
|
.WithOne(i => i.DecoTemplateGroup) |
|
.HasForeignKey(i => i.DecoTemplateGroupId) |
|
.OnDelete(DeleteBehavior.Cascade); |
|
} |
|
}
|
|
|