m => m.Intervals(c => c
.Field(new Field(fieldName, null, null))
.Match(ma => ma
.Query(queryValue)
.MaxGaps(0)
.Ordered(true)
)
)
I am using Intervals to filter the records basis on fieldname and fieldvalue which is passing in queryvalue parameter , i am facing one problem in this , i dont find any solution to pass multiple fields with different queryvalue per field . In this Intervals function , how to pass multiple fields with different values,as collection of fields with values.
Please provide me any solution