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
반응형