У меня есть функция SQL SERVER RANK()
, которая работает по следующему URL:
https://stackoverflow.com/questions/27469838/is-there-a-function-in-entity-framework-that-translates-to-the-rank-function-i?noredirect=1&lq=1
И, похоже, следующий ответ делает:
var customersByCountry = db.Customers
.GroupBy(c => c.CountryID);
.Select(g => new { CountryID = g.Key, Count = g.Count() });
var ranks = customersByCountry
.Select(c => new
{
c.CountryID,
c.Count,
RANK = customersByCountry.Count(c2 => c2.Count > c.Count) + 1
});
Я понял если я не могу напрямую получить DENSE_RANK()
, я могу наблюдать, когда меняется RANK()
, и пытаться выбрать DENSE_RANK()
на основе этого
var denseRankCounter = 0;
Dictionary<int, int> denseRankWithRank = new Dictionary<int, int>();
denseRankWithRank.Add(customersByCountry[0].RANK, ++denseRankCounter);
for (int x = 1; x < customersByCountry.Count; x++)
{
if (customersByCountry[x] != customersByCountry[x - 1])
{
if (!denseRankWithRank.ContainsKey(customersByCountry[x].RANK))
{
denseRankWithRank.Add(customersByCountry[x].RANK, ++denseRankCounter);
}
}
}
, а затем применить эти результаты обратно к набору результатов. ,
var denseCustomersByCountry = customersByCountry.Select(c => new
{
DENSE_RANK = denseRankWithRank[c.RANK],
CountryID = c.CountryID
// ... ,any other required
}).ToList();
Хотя это работает несколько, это кажется очень громоздким.
Мне было интересно, есть ли более простой способ без словаря или каких-либо промежуточных шагов.