nuget package and custom operators

This commit is contained in:
Biarity
2018-01-28 09:20:51 +10:00
parent e848b86a16
commit 8d1b01eb2c
6 changed files with 40 additions and 11 deletions

View File

@@ -9,7 +9,7 @@ namespace SieveTests.Services
{
public class SieveCustomFilterMethodsOfPosts : ISieveCustomFilterMethods<Post>
{
public IQueryable<Post> IsNew(IQueryable<Post> source)
public IQueryable<Post> IsNew(IQueryable<Post> source, string op, string value)
{
var result = source.Where(p => p.LikeCount < 100 &&
p.CommentCount < 5);