aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2024-10-10 14:32:49 +0000
committerJPVenson <github@jpb.email>2024-10-10 14:32:49 +0000
commitee0dad6f432e5bfdda074e3f006f4c4d3c418d08 (patch)
tree34bbc0ea11007d9e7cd84f738d7b69cf88073259 /Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs
parent3e7ce5e1df9c6820a6dfd4c23aea29eed83b43ba (diff)
Refactored ItemValue structure
Diffstat (limited to 'Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs')
-rw-r--r--Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs b/Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs
index 0e90b8d82..fe5cf30ac 100644
--- a/Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs
+++ b/Jellyfin.Server.Implementations/ModelConfiguration/AncestorIdConfiguration.cs
@@ -15,5 +15,7 @@ public class AncestorIdConfiguration : IEntityTypeConfiguration<AncestorId>
{
builder.HasKey(e => new { e.ItemId, e.ParentItemId });
builder.HasIndex(e => e.ParentItemId);
+ builder.HasOne(e => e.ParentItem);
+ builder.HasOne(e => e.Item);
}
}