Refines a search to match documents whose specified field value equals the specified value.
The eq()
filter function refines a WixSearchBuilder
to only
match documents where the value of the specified field equals the specified value
.
eq()
only matches values of the same type. For example, a number value stored
as a String type does not match the same number stored as a Number type.
Matching strings with eq()
is case sensitive, so "text"
is not equal to "Text"
.
If other filters were previously used in the same WixSearchBuilder
instance, eq()
is applied using an and
condition with previously set filters.
The field whose value will be compared with value
.
The value to match against.