Adf.Business.Search.InListAttribute.InListAttribute C# (CSharp) Метод

InListAttribute() публичный Метод

Initializes an instance of InQueryAttribute with the supplied column name.
public InListAttribute ( string column, bool includeWhenEmpty = true ) : System
column string The supplied column name.
includeWhenEmpty bool
Результат System
        public InListAttribute(string column, bool includeWhenEmpty = true)
            : base("In", OperatorType.In, column, ParameterType.ValueList)
        {
            IncludeWhenEmpty = includeWhenEmpty;
        }
InListAttribute