소스 검색

Updated comments/TODOs

JPVenson 8 달 전
부모
커밋
ffc18a2044
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Jellyfin.Server/Migrations/Routines/MigrateLibraryDb.cs

+ 1 - 1
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))