sql >> Databasteknik >  >> RDS >> Mysql

Linq till SQL med hjälp av grupp efter, och ordning efter antal

Prova detta:

var product = 
            from p in yourContext.Active_Details
            group p by p.PVersion into pgroup
            let count = pgroup.Count()
            orderby count
            select new { Count = count, PVersion = pgroup.Key };

SELECT count(ProductVersion), ProductVersion , ProductID , SubProductID 
FROM [do-not-delete-accounts].[dbo].[Activation_Details] 
group by ProductVersion,ProductID,SubProductID 
order by count(ProductVersion);

var query = 
            from p in yourContext.Activation_Details
            group p by new 
            { 
               ProductVersion = p.ProductVersion, 
               ProductID = p.ProductID,
               SubProductID = p.SubProductID 
            } 
            into pgroup
            let count = pgroup.Count()
            orderby count
            select new 
            { 
                Count = count, 
                ProductVersion = pgroup.Key.ProductVersion, 
                ProductID = pgroup.Key.ProductID,
                SubProductID = pgroup.Key.SubProductID  
            };


  1. Hur LOWER()-funktionen fungerar i MySQL

  2. visa mysql newline i HTML

  3. Oracle-datatyp:Ska jag använda VARCHAR2 eller CHAR

  4. Spring Boot MySql Access nekad för användaren 'root'@'localhost'