public Predicate <object> MakePredicate(DataSchema dataSchema, Type columnType) { object operandValue = GetOperandValue(dataSchema, columnType); return(columnValue => FilterOperation.Matches(dataSchema, columnType, columnValue, operandValue)); }