Skip to main content
.NET 6.0+

SearchMemberOptionsAttribute.IncludeMemberInCriteria Property

Indicates whether to include or exclude the target property from the search performed by the FullTextSearch Action (see FilterController.FullTextFilterAction).

Namespace: DevExpress.ExpressApp.Filtering

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public SearchMemberMode IncludeMemberInCriteria { get; }

Property Value

Type Description
SearchMemberMode

The SearchMemberMode enumeration value specifying whether to include or exclude the target property from the search performed by the FullTextSearch Action.

Remarks

This property is specified by the useMemberInCriteria parameter passed as the SearchMemberOptions attribute, applied to a business class property. The following values are possible:

  • Include

    The target property is allowed to be used in the search performed by the FullTextSearch Action.

  • Exclude

    The target property is prohibited from use in the search performed by the FullTextSearch Action.

See Also