14 lines
295 B
C#
14 lines
295 B
C#
using Ardalis.Specification;
|
|
using BeReadyBackend.Models;
|
|
|
|
namespace BeReadyBackend.Specifications.Users;
|
|
|
|
public class GetUsersByScoreSpec : Specification<User>
|
|
{
|
|
public GetUsersByScoreSpec()
|
|
{
|
|
Query
|
|
.OrderByDescending(x => x.Score)
|
|
.Take(20);
|
|
}
|
|
} |