Files
jellyfin-jellyfin-1/Jellyfin.Server.Implementations/ModelConfiguration/PeopleConfiguration.cs

21 lines
591 B
C#
Raw Normal View History

2024-09-08 16:56:14 +00:00
using System;
using Jellyfin.Data.Entities;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Jellyfin.Server.Implementations.ModelConfiguration;
/// <summary>
/// People configuration.
/// </summary>
public class PeopleConfiguration : IEntityTypeConfiguration<People>
{
/// <inheritdoc/>
public void Configure(EntityTypeBuilder<People> builder)
{
2024-10-09 11:22:52 +00:00
builder.HasKey(e => new { e.ItemId, e.Role, e.ListOrder });
2024-09-08 16:56:14 +00:00
builder.HasIndex(e => new { e.ItemId, e.ListOrder });
builder.HasIndex(e => e.Name);
}
}