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,