Automation.UI.Tree.QueryParts.QueryOperatorPart.Select C# (CSharp) Method

Select() public method

Return the constructed query.
public Select ( ) : Query
return Query
        public Query Select()
        {
            if (Query.Conditions == null)
                throw new QueryConstructionException("Cannot select - No conditions have been specified");

            return Query;
        }