mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			648 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			648 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Jellyfin.Data.Entities;
 | 
						|
using Microsoft.EntityFrameworkCore;
 | 
						|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
 | 
						|
 | 
						|
namespace Jellyfin.Server.Implementations.ModelConfiguration
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// FluentAPI configuration for the Permission entity.
 | 
						|
    /// </summary>
 | 
						|
    public class PreferenceConfiguration : IEntityTypeConfiguration<Preference>
 | 
						|
    {
 | 
						|
        /// <inheritdoc/>
 | 
						|
        public void Configure(EntityTypeBuilder<Preference> builder)
 | 
						|
        {
 | 
						|
            builder
 | 
						|
                .HasIndex(p => new { p.UserId, p.Kind })
 | 
						|
                .HasFilter("[UserId] IS NOT NULL")
 | 
						|
                .IsUnique();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |