mirror of https://github.com/jellyfin/jellyfin.git
20 lines
526 B
C#
20 lines
526 B
C#
using System;
|
|
using Jellyfin.Data.Entities;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace Jellyfin.Server.Implementations.ModelConfiguration;
|
|
|
|
/// <summary>
|
|
/// Chapter configuration.
|
|
/// </summary>
|
|
public class ChapterConfiguration : IEntityTypeConfiguration<Chapter>
|
|
{
|
|
/// <inheritdoc/>
|
|
public void Configure(EntityTypeBuilder<Chapter> builder)
|
|
{
|
|
builder.HasKey(e => new { e.ItemId, e.ChapterIndex });
|
|
builder.HasOne(e => e.Item);
|
|
}
|
|
}
|