Interface IMultiQuery
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Multi query interface
public interface IMultiQuery : IDataQuery, IDataQuerySettings, IWhereCondition, IQueryParameters, IQueryObjectWithValue, IQueryObject
- Inherited Members
- Extension Methods
Properties
OrderByResultColumns
List of columns for the result order by. If not specified, the result is ordered by sources and global order by.
string OrderByResultColumns { get; set; }
Property Value
- string
SelectResultColumnsList
List of columns to use for results, by default returns all columns defined in the inner queries. Example: "DocumentName, DocumentID"
QueryColumnList SelectResultColumnsList { get; set; }
Property Value
UseTypeColumns
If true (default), the query uses type columns for the output, otherwise it uses only global columns
bool UseTypeColumns { get; set; }
Property Value
- bool