2018-02-10 06:37:04 +01:00
|
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
using Sieve.Models;
|
|
|
|
|
using Sieve.Services;
|
|
|
|
|
using SieveTests.Entities;
|
|
|
|
|
|
|
|
|
|
namespace SieveTests.Services
|
|
|
|
|
{
|
2018-05-15 01:34:37 +02:00
|
|
|
|
public class ApplicationSieveProcessor : SieveProcessor
|
2018-02-10 06:37:04 +01:00
|
|
|
|
{
|
|
|
|
|
public ApplicationSieveProcessor(IOptions<SieveOptions> options, ISieveCustomSortMethods customSortMethods, ISieveCustomFilterMethods customFilterMethods) : base(options, customSortMethods, customFilterMethods)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override SievePropertyMapper MapProperties(SievePropertyMapper mapper)
|
|
|
|
|
{
|
|
|
|
|
mapper.Property<Post>(p => p.Title)
|
|
|
|
|
.CanSort()
|
|
|
|
|
.CanFilter()
|
|
|
|
|
.HasName("CustomTitleName");
|
|
|
|
|
|
|
|
|
|
return mapper;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|