1. PropertyQueryFilter

Class PropertyQueryFilter

Version:
日本語翻訳に関する免責事項

このページの翻訳はAIによって自動的に行われました。可能な限り正確な翻訳を心掛けていますが、原文と異なる表現や解釈が含まれる場合があります。正確で公式な情報については、必ず英語の原文をご参照ください。

Filters on entities with a property set to value(s).

Inheritance
System.Object
PropertyQueryFilter
Namespace: Stylelabs.M.Base.Querying.Filters
Assembly: Stylelabs.M.Sdk.dll
Syntax
public class PropertyQueryFilter : QueryFilter

Properties

Culture

The culture to filter in, in case of multi-language properties.

Declaration
public CultureInfo Culture { get; set; }
Property Value
TypeDescription
CultureInfo

DataType

The data-type of the property.

Declaration
public virtual FilterDataType DataType { get; set; }
Property Value
TypeDescription
FilterDataType

Operator

The operator used to compare the property-value(s).

Declaration
public ComparisonOperator Operator { get; set; }
Property Value
TypeDescription
ComparisonOperator

Property

The name of the property to filter on.

Declaration
public string Property { get; set; }
Property Value
TypeDescription
System.String

Type

The type of the filter.

Declaration
public override FilterType Type { get; }
Property Value
TypeDescription
FilterType
Overrides

Value

The value to compare with.

Declaration
public object Value { get; set; }
Property Value
TypeDescription
System.Object

Values

The values to compare with. If multiple values are specified, the filter will combine them using "OR" (essentially an IN-clause).

Declaration
public IEnumerable<object> Values { get; set; }
Property Value
TypeDescription
IEnumerable<System.Object>

Methods

Accept(IFilterVisitor)

Accepts a query visitor.

Declaration
public override void Accept(IFilterVisitor visitor)
Parameters
TypeNameDescription
IFilterVisitorvisitor

The visitor to accept.

Overrides
この記事を改善するための提案がある場合は、 お知らせください!