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

21 lines
539 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)
{
builder.HasKey(e => e.Id);
2024-09-08 16:56:14 +00:00
builder.HasIndex(e => e.Name);
builder.HasMany(e => e.BaseItems);
2024-09-08 16:56:14 +00:00
}
}