using Sieve.Services; namespace SieveUnitTests.Abstractions.Entity { public class SieveConfigurationForIPost : ISieveConfiguration { public void Configure(SievePropertyMapper mapper) { mapper.Property(p => p.ThisHasNoAttributeButIsAccessible) .CanSort() .CanFilter() .HasName("shortname"); mapper.Property(p => p.TopComment.Text) .CanFilter(); mapper.Property(p => p.TopComment.Id) .CanSort(); mapper.Property(p => p.OnlySortableViaFluentApi) .CanSort(); mapper.Property(p => p.TopComment.Text) .CanFilter() .HasName("topc"); mapper.Property(p => p.FeaturedComment.Text) .CanFilter() .HasName("featc"); mapper .Property(p => p.DateCreated) .CanSort() .HasName("CreateDate"); } } }