mirror of
https://github.com/Biarity/Sieve.git
synced 2024-11-22 21:42:38 +01:00
863d75bdc1
* Modular configuration for property mappings * Update Readme, unit tests and sample Co-authored-by: Steven Decoodt <steven.decoodt@vinci-energies.net>
16 lines
366 B
C#
16 lines
366 B
C#
using Sieve.Services;
|
|
|
|
namespace Sieve.Sample.Entities
|
|
{
|
|
public class SieveConfigurationForPost : ISieveConfiguration
|
|
{
|
|
public void Configure(SievePropertyMapper mapper)
|
|
{
|
|
mapper.Property<Post>(p => p.Title)
|
|
.CanSort()
|
|
.CanFilter()
|
|
.HasName("CustomTitleName");
|
|
}
|
|
}
|
|
}
|