Providing you have a simple index:
public partial class SomeIndex
{
[Key]
[IsFilterable]
public string Id{ get; set; }
[IsSearchable, IsFilterable, IsSortable]
public string Name{ get; set; }
[IsFilterable, IsSortable]
public int SomeNumber { get; set; }
How do I search the exact number matches for SomeNumber int?
'eq'
doesn't apply here.
Any advice appreciated. Thank you.