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

InQueryAttribute() public method

Initializes an instance of InQueryAttribute with the supplied column name.
public InQueryAttribute ( string column ) : System
column string The supplied column name.
return System
        public InQueryAttribute(string column)
            : base("In", OperatorType.In, column, ParameterType.Query)
        {
        }
InQueryAttribute