diff options
Diffstat (limited to 'Jellyfin.Server.Implementations/JellyfinDbContext.cs')
| -rw-r--r-- | Jellyfin.Server.Implementations/JellyfinDbContext.cs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Jellyfin.Server.Implementations/JellyfinDbContext.cs b/Jellyfin.Server.Implementations/JellyfinDbContext.cs index 284897c994..becfd81a4a 100644 --- a/Jellyfin.Server.Implementations/JellyfinDbContext.cs +++ b/Jellyfin.Server.Implementations/JellyfinDbContext.cs @@ -112,7 +112,7 @@ public class JellyfinDbContext(DbContextOptions<JellyfinDbContext> options, ILog public DbSet<Chapter> Chapters => Set<Chapter>(); /// <summary> - /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. + /// Gets the <see cref="DbSet{TEntity}"/>. /// </summary> public DbSet<ItemValue> ItemValues => Set<ItemValue>(); @@ -122,16 +122,21 @@ public class JellyfinDbContext(DbContextOptions<JellyfinDbContext> options, ILog public DbSet<ItemValueMap> ItemValuesMap => Set<ItemValueMap>(); /// <summary> - /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. + /// Gets the <see cref="DbSet{TEntity}"/>. /// </summary> public DbSet<MediaStreamInfo> MediaStreamInfos => Set<MediaStreamInfo>(); /// <summary> - /// Gets the <see cref="DbSet{TEntity}"/> containing the user data. + /// Gets the <see cref="DbSet{TEntity}"/>. /// </summary> public DbSet<People> Peoples => Set<People>(); /// <summary> + /// Gets the <see cref="DbSet{TEntity}"/>. + /// </summary> + public DbSet<PeopleBaseItemMap> PeopleBaseItemMap => Set<PeopleBaseItemMap>(); + + /// <summary> /// Gets the <see cref="DbSet{TEntity}"/> containing the referenced Providers with ids. /// </summary> public DbSet<BaseItemProvider> BaseItemProviders => Set<BaseItemProvider>(); |
