如果您有一个简单的索引:
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; }
如何搜索 SomeNumber int 的确切数字匹配?
'eq'
不适用于这里。
任何建议表示赞赏。谢谢你。