From 0e55862b3cd6aafd97d44d36ddafb56ee76e6be5 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Mon, 1 May 2023 08:07:24 -0400 Subject: [PATCH] [PM-1524] Fix SQLite Collections (#2862) * Use Client Side Execution for Sqlite * Run formatting * Remove Unused Record --- .../Repositories/CollectionRepository.cs | 41 ++++++++++++++++++- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs b/src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs index ce5b07b1c0..25f498f9ab 100644 --- a/src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs +++ b/src/Infrastructure.EntityFramework/Repositories/CollectionRepository.cs @@ -304,8 +304,45 @@ public class CollectionRepository : Repository new + { + c.Id, + c.OrganizationId, + c.Name, + c.CreationDate, + c.RevisionDate, + c.ExternalId + }) + .Select(collectionGroup => new CollectionDetails + { + Id = collectionGroup.Key.Id, + OrganizationId = collectionGroup.Key.OrganizationId, + Name = collectionGroup.Key.Name, + CreationDate = collectionGroup.Key.CreationDate, + RevisionDate = collectionGroup.Key.RevisionDate, + ExternalId = collectionGroup.Key.ExternalId, + ReadOnly = Convert.ToBoolean(collectionGroup.Min(c => Convert.ToInt32(c.ReadOnly))), + HidePasswords = Convert.ToBoolean(collectionGroup.Min(c => Convert.ToInt32(c.HidePasswords))), + }) + .ToList(); + } + + return await (from c in baseCollectionQuery + group c by new + { + c.Id, + c.OrganizationId, + c.Name, + c.CreationDate, + c.RevisionDate, + c.ExternalId + } into collectionGroup select new CollectionDetails { Id = collectionGroup.Key.Id,