C#/ASP.net

entity framework에서 top5만 나오게 하기

saltdoll 2017. 6. 9. 08:21
반응형

C# Entity framework에서 top5만 나오게 하기


.Take(5) 가 정답이네요. 


context.PersonSet.OrderByDescending(u => u.OnlineAccounts.Count).Take(5); 




출처: https://stackoverflow.com/questions/2656576/select-top-5-in-entity-framework

반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)