Refactor SQLite Database Provider
- Removed unused classes and files related to SQLite database provider, including SqliteDesignTimeJellyfinDbFactory, ModelBuilderExtensions, PragmaConnectionInterceptor, AssemblyInfo, SqliteDatabaseProvider, DateTimeKindValueConverter. - Updated tests to remove dependencies on removed classes and adjusted mocking for configuration sections. - Added Microsoft.EntityFrameworkCore.Sqlite package reference to test project. - Improved string handling in tests for better consistency and clarity. - Refactored logging methods in JellyfinApplicationFactory for better readability and maintainability.
This commit is contained in:
+15
-1
@@ -16,19 +16,33 @@ using System;
|
||||
public class ItemProviderView
|
||||
{
|
||||
public Guid? ItemId { get; set; }
|
||||
|
||||
public string? Type { get; set; }
|
||||
|
||||
public string? Name { get; set; }
|
||||
|
||||
public string? OriginalTitle { get; set; }
|
||||
|
||||
public int? ProductionYear { get; set; }
|
||||
|
||||
public string? SeriesName { get; set; }
|
||||
|
||||
public int? EpisodeNumber { get; set; }
|
||||
|
||||
public int? SeasonNumber { get; set; }
|
||||
|
||||
public string? ImdbId { get; set; }
|
||||
|
||||
public string? TmdbId { get; set; }
|
||||
|
||||
public string? TvdbId { get; set; }
|
||||
|
||||
public string? TvRageId { get; set; }
|
||||
|
||||
public string? MusicBrainzAlbumId { get; set; }
|
||||
|
||||
public string? MusicBrainzArtistId { get; set; }
|
||||
|
||||
/// <summary>Gets or sets remaining providers as a JSON object string.</summary>
|
||||
public string? OtherProviders { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user