aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/JellyfinDbContext.cs
diff options
context:
space:
mode:
authorJPVenson <6794763+JPVenson@users.noreply.github.com>2024-10-08 13:18:48 +0000
committerJPVenson <6794763+JPVenson@users.noreply.github.com>2024-10-08 13:18:48 +0000
commitd5409a26ea9eb8b7e149c62b6a1a9293726f4be2 (patch)
tree13d2d75f027bb522201fa8008ab421e55330d8f7 /Jellyfin.Server.Implementations/JellyfinDbContext.cs
parent6c819fe516ba742f1dcc77d61f6eedbe987cd692 (diff)
WIP Search refactoring and Provider ID refactoring
Diffstat (limited to 'Jellyfin.Server.Implementations/JellyfinDbContext.cs')
-rw-r--r--Jellyfin.Server.Implementations/JellyfinDbContext.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Jellyfin.Server.Implementations/JellyfinDbContext.cs b/Jellyfin.Server.Implementations/JellyfinDbContext.cs
index 01f059db4..fcc20a0d4 100644
--- a/Jellyfin.Server.Implementations/JellyfinDbContext.cs
+++ b/Jellyfin.Server.Implementations/JellyfinDbContext.cs
@@ -128,6 +128,11 @@ public class JellyfinDbContext : DbContext
/// </summary>
public DbSet<People> Peoples => Set<People>();
+ /// <summary>
+ /// Gets the <see cref="DbSet{TEntity}"/> containing the referenced Providers with ids.
+ /// </summary>
+ public DbSet<BaseItemProvider> BaseItemProviders => Set<BaseItemProvider>();
+
/*public DbSet<Artwork> Artwork => Set<Artwork>();
public DbSet<Book> Books => Set<Book>();