IDataCubeServiceDataCubeInfoQuery Method |
Queries for
DataCubeInfo objects according to the specified criteria.
Namespace: Dundas.BI.Entities.DataCubesAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
SyntaxIList<DataCubeInfo> DataCubeInfoQuery(
ICollection<Guid> queryRootIds,
Guid? tenantId,
StorageType? storage,
JobRunResult? jobRunResult,
int pageNumber,
int pageSize,
IList<Tuple<FileSystemQueryField, SortDirection>> orderBy,
ICollection<FileSystemQueryFilterRule> filter
)
Function DataCubeInfoQuery (
queryRootIds As ICollection(Of Guid),
tenantId As Guid?,
storage As StorageType?,
jobRunResult As JobRunResult?,
pageNumber As Integer,
pageSize As Integer,
orderBy As IList(Of Tuple(Of FileSystemQueryField, SortDirection)),
filter As ICollection(Of FileSystemQueryFilterRule)
) As IList(Of DataCubeInfo)
IList<DataCubeInfo^>^ DataCubeInfoQuery(
ICollection<Guid>^ queryRootIds,
Nullable<Guid> tenantId,
Nullable<StorageType> storage,
Nullable<JobRunResult> jobRunResult,
int pageNumber,
int pageSize,
IList<Tuple<FileSystemQueryField, SortDirection>^>^ orderBy,
ICollection<FileSystemQueryFilterRule^>^ filter
)
abstract DataCubeInfoQuery :
queryRootIds : ICollection<Guid> *
tenantId : Nullable<Guid> *
storage : Nullable<StorageType> *
jobRunResult : Nullable<JobRunResult> *
pageNumber : int *
pageSize : int *
orderBy : IList<Tuple<FileSystemQueryField, SortDirection>> *
filter : ICollection<FileSystemQueryFilterRule> -> IList<DataCubeInfo> Parameters
- queryRootIds ICollectionGuid
- The folder IDs under which to query. Use AllProjectRootFolders when requesting information for all projects.
- tenantId NullableGuid
- The tenant ID (ignored if the caller is associated with a tenant).
- storage NullableStorageType
- The storage category. Use when requesting information irrespective of the storage category.
- jobRunResult NullableJobRunResult
- The latest result status for the associated job. Use when requesting information irrespective of the result.
- pageNumber Int32
- The page number, or 0 to indicate that all pages should be returned.
- pageSize Int32
- The number of results in each page (ignored if pageNumber is 0).
- orderBy IListTupleFileSystemQueryField, SortDirection
- The sort order of the result, or if the order does not matter.
- filter ICollectionFileSystemQueryFilterRule
- A filter to use when searching for data cubes. Use if a filter is not required.
Return Value
IListDataCubeInfoThe list of specified
DataCubeInfo.
Exceptions
See Also