mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			819 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			819 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using Jellyfin.Data.Entities;
 | 
						|
using Microsoft.EntityFrameworkCore;
 | 
						|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
 | 
						|
 | 
						|
namespace Jellyfin.Server.Implementations.ModelConfiguration
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// FluentAPI configuration for the DisplayPreferencesConfiguration entity.
 | 
						|
    /// </summary>
 | 
						|
    public class DisplayPreferencesConfiguration : IEntityTypeConfiguration<DisplayPreferences>
 | 
						|
    {
 | 
						|
        /// <inheritdoc/>
 | 
						|
        public void Configure(EntityTypeBuilder<DisplayPreferences> builder)
 | 
						|
        {
 | 
						|
            builder
 | 
						|
                .HasMany(d => d.HomeSections)
 | 
						|
                .WithOne()
 | 
						|
                .OnDelete(DeleteBehavior.Cascade);
 | 
						|
 | 
						|
            builder
 | 
						|
                .HasIndex(entity => new { entity.UserId, entity.ItemId, entity.Client })
 | 
						|
                .IsUnique();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |