Class SearchFilter
Defines members for creating search criteria.
Inheritance
System.Object
SearchFilter
Namespace: Syncfusion.Blazor.Data
Assembly: Syncfusion.Blazor.dll
Syntax
public class SearchFilter : Object
Constructors
SearchFilter()
Declaration
public SearchFilter()
Properties
Fields
Collection of fields to search.
Declaration
public List<string> Fields { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
IgnoreCase
Specifies that incasesensitive search to be done.
Declaration
public bool IgnoreCase { get; set; }
Property Value
Type |
---|
System.Boolean |
Key
Specifies the search key.
Declaration
public string Key { get; set; }
Property Value
Type |
---|
System.String |
Operator
Specifies the search operator. By default, contains operator will be used.
Declaration
public string Operator { get; set; }
Property Value
Type |
---|
System.String |