sql >> Database >  >> RDS >> PostgreSQL

EF Core GroupBy met Select Distinct Count

Momenteel elk soort onderscheid binnen groepen (zoals Distinct binnen ElementSelector van GroupBy of een andere GroupBy binnen ElementSelector van GroupBy ) wordt niet ondersteund door EF Core . Als je erop staat EF te gebruiken in dit geval moet u enkele gegevens in het geheugen ophalen:

var result = (await _context.Items
              .Select(p => new { p.ParentAId, p.ParentBId })
              .Distinct()
              .ToListAsync())  // When EF supports mentioned cases above, you can remove this line!
              .GroupBy(i => i.ParentBId, i => i.ParentAId)
              .ToDictionary(g => g.Key, g => g.Distinct().Count());



  1. Hoe u de knopwaarde kunt krijgen met Javascript

  2. Verouderde MySQL-extensie in PHP 5.5.x

  3. DML-statements testen voor In-Memory OLTP

  4. Hoe moet ik het interpreteren Selecteer Distinct aliasRefForMe.field1 From [email protected] aliasRefForMe