Files
BeReadyBackend/BeReadyBackend/Specifications/Users/GetUsersByScoreSpec.cs
T

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);
}
}