| Name | Message | Date |
|---|---|---|
| 📄 EntityFrameworkCoreLockingBehavior.cs | 8 days ago | |
| 📄 JellyfinDatabaseProvider.cs | 8 days ago | |
| 📄 MediaRepository.cs | 8 days ago |
📄
src/Infrastructure/Database/Jellyfin/JellyfinDatabaseProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Jellyfin.Database.Implementations; using Jellyfin.Database.Implementations.DbConfiguration; using Microsoft.EntityFrameworkCore; namespace Slopper.Infrastructure.Database.Jellyfin; internal sealed class JellyfinDatabaseProvider : IJellyfinDatabaseProvider { public IDbContextFactory<JellyfinDbContext>? DbContextFactory { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } public void ConfigureConventions(ModelConfigurationBuilder configurationBuilder) { // Do nothing } public Task DeleteBackup(string key) => throw new NotImplementedException(); public void Initialise(DbContextOptionsBuilder options, DatabaseConfigurationOptions databaseConfiguration) => throw new NotImplementedException(); public Task<string> MigrationBackupFast(CancellationToken cancellationToken) => throw new NotImplementedException(); public void OnModelCreating(ModelBuilder modelBuilder) { // Do nothing } public Task PurgeDatabase(JellyfinDbContext dbContext, IEnumerable<string>? tableNames) => throw new NotImplementedException(); public Task RestoreBackupFast(string key, CancellationToken cancellationToken) => throw new NotImplementedException(); public Task RunScheduledOptimisation(CancellationToken cancellationToken) => throw new NotImplementedException(); public Task RunShutdownTask(CancellationToken cancellationToken) => throw new NotImplementedException(); }