mirror of
				https://github.com/Biarity/Sieve.git
				synced 2025-11-04 02:39:00 +01:00 
			
		
		
		
	Custom filters/sorts case-insensitivity
This commit is contained in:
		@@ -11,8 +11,7 @@ namespace SieveUnitTests.Services
 | 
			
		||||
    {
 | 
			
		||||
        public IQueryable<Post> IsNew(IQueryable<Post> source, string op, string value)
 | 
			
		||||
        {
 | 
			
		||||
            var result = source.Where(p => p.LikeCount < 100 &&
 | 
			
		||||
                                           p.CommentCount < 5);
 | 
			
		||||
            var result = source.Where(p => p.LikeCount < 100);
 | 
			
		||||
 | 
			
		||||
            return result;
 | 
			
		||||
        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user