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
601 B
21 lines
601 B
5 months ago
|
using System;
|
||
|
using Jellyfin.Data.Entities;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
||
|
|
||
|
namespace Jellyfin.Server.Implementations.ModelConfiguration;
|
||
|
|
||
|
/// <summary>
|
||
|
/// itemvalues Configuration.
|
||
|
/// </summary>
|
||
|
public class ItemValuesConfiguration : IEntityTypeConfiguration<ItemValue>
|
||
|
{
|
||
|
/// <inheritdoc/>
|
||
|
public void Configure(EntityTypeBuilder<ItemValue> builder)
|
||
|
{
|
||
|
builder.HasNoKey();
|
||
|
builder.HasIndex(e => new { e.ItemId, e.Type, e.CleanValue });
|
||
|
builder.HasIndex(e => new { e.ItemId, e.Type, e.Value });
|
||
|
}
|
||
|
}
|