The current repository shows an implementation of filtering by Criteria using a DDD approach
Execute the following command on the root folder
dotnet build & dotnet run --project apps/WebApi/WebApi.csproj
https://localhost:5001/items?order=desc&order_by=name
https://localhost:5001/items?limit=10
https://localhost:5001/items?offset=5
https://localhost:5001/items?filters[0][field]=name&filters[0][operator]=CONTAINS&filters[0][value]=item
EQUAL = "=="
NOT_EQUAL = "!="
GT = ">"
LT = "<"
CONTAINS = "CONTAINS"
NOT_CONTAINS = "NOT_CONTAINS"