diff options
| author | JPVenson <github@jpb.email> | 2024-11-14 05:58:32 +0000 |
|---|---|---|
| committer | JPVenson <github@jpb.email> | 2024-11-14 05:58:32 +0000 |
| commit | ffc18a204463b14183ae50e71147a4ce6047c3be (patch) | |
| tree | bb105ad5dc505b1b8b331d9a1bbe0c6403b0d002 /Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | |
| parent | a71187ebcc102221e93b842c7678acabb8ca3e50 (diff) | |
Updated comments/TODOs
Diffstat (limited to 'Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs')
| -rw-r--r-- | Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs index c988f6d14..de4894198 100644 --- a/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs +++ b/Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs @@ -112,7 +112,7 @@ public class MigrateLibraryDb : IMigrationRoutine var itemValueQuery = "select ItemId, Type, Value, CleanValue FROM ItemValues WHERE Type <> 6"; dbContext.ItemValues.ExecuteDelete(); - // EFCores local lookup sucks. + // EFCores local lookup sucks. We cannot use context.ItemValues.Local here because its just super slow. var localItems = new Dictionary<(int Type, string CleanValue), (ItemValue ItemValue, List<Guid> ItemIds)>(); foreach (SqliteDataReader dto in connection.Query(itemValueQuery)) |
