Table of Contents

Class FreeTextCriterion

Namespace
Dynamicweb.Ecommerce.Searching
Assembly
Dynamicweb.Ecommerce.dll

Represents a free text criterion.

public class FreeTextCriterion : QueryCriterion
Inheritance
FreeTextCriterion
Inherited Members

Properties

LookInProductFields

Gets or sets the product fields names.

public IDictionary<object, object> LookInProductFields { get; set; }

Property Value

IDictionary<object, object>

Remarks

This property used if the UseAllProductFields property is False.

SearchKey

Gets or sets the search key.

public string? SearchKey { get; set; }

Property Value

string

SearchProductFields

Gets or sets the value indicating whether to search in the product fields.

public bool SearchProductFields { get; set; }

Property Value

bool

UseAllProductFields

Gets or sets the value indicating whether to use all product fields.

public bool UseAllProductFields { get; set; }

Property Value

bool

Methods

GetProductFieldClause()

Gets the product fields names.

public string GetProductFieldClause()

Returns

string

The product fields names.

GetWhereClause()

Gets a "WHERE" clause.

public override string GetWhereClause()

Returns

string

The "WHERE" clause.

To top