Adf.Business.Search.InListAttribute.InListAttribute C# (CSharp) Method

InListAttribute() public method

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
return System
        public InListAttribute(string column, bool includeWhenEmpty = true)
            : base("In", OperatorType.In, column, ParameterType.ValueList)
        {
            IncludeWhenEmpty = includeWhenEmpty;
        }
InListAttribute