mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			713 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			713 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Jellyfin.Data.Entities;
 | 
						|
using Microsoft.EntityFrameworkCore;
 | 
						|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
 | 
						|
 | 
						|
namespace Jellyfin.Server.Implementations.ModelConfiguration
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// FluentAPI configuration for the CustomItemDisplayPreferences entity.
 | 
						|
    /// </summary>
 | 
						|
    public class CustomItemDisplayPreferencesConfiguration : IEntityTypeConfiguration<CustomItemDisplayPreferences>
 | 
						|
    {
 | 
						|
        /// <inheritdoc/>
 | 
						|
        public void Configure(EntityTypeBuilder<CustomItemDisplayPreferences> builder)
 | 
						|
        {
 | 
						|
            builder
 | 
						|
                .HasIndex(entity => new { entity.UserId, entity.ItemId, entity.Client, entity.Key })
 | 
						|
                .IsUnique();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |