Click or drag to resize

DataSourceApiQuery Class

Represents the ActualData Object query which is performed on Casewhere DataSource.
Inheritance Hierarchy
SystemObject
  Casewhere.Runtime.DSL.ApiDataApiQuery
    Casewhere.Runtime.DSL.ApiDataSourceApiQuery

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
public class DataSourceApiQuery : DataApiQuery

The DataSourceApiQuery type exposes the following members.

Properties
 NameDescription
Public propertyCustomCollation This parameter specifies the custom collation for the query.
(Inherited from DataApiQuery)
Public propertyDataSourceName The ActualData Source name.
Public propertyDataSourceParameters The Parameters that passed to the data source query.
Public propertyFilter The filter object that is built using FilterBuilder.
(Inherited from DataApiQuery)
Public propertyGeoSpatialStages
(Inherited from DataApiQuery)
Public propertyHintIndexForCount The hint index name specified for the counting query.
(Inherited from DataApiQuery)
Public propertyHintIndexName The hint index name specified for the query.
(Inherited from DataApiQuery)
Public propertyIncludeTotal Determines whether Casewhere returns the total number of ActualData Objects.
(Inherited from DataApiQuery)
Public propertyMaxQueryTimeout The max timeout specified for the query.
(Inherited from DataApiQuery)
Public propertyProjectedFields The list of fields returned to Client. By default, Casewhere will return all.
(Inherited from DataApiQuery)
Public propertySearchLimit When the limit is set, Casewhere will only process the search result within that limit, even when more data is found. If the limit is not set, Casewhere will use the SearchLimit configured in the web.config. This limit is applied for full-text search only.
(Inherited from DataApiQuery)
Public propertySkip Bypasses a specified number of elements in a sequence and then returns the remaining elements. By default, Casewhere will skip none.
(Inherited from DataApiQuery)
Public propertySortedFields List of sort fields.
(Inherited from DataApiQuery)
Public propertyTake Determines the number of ActualData Objects returned. By default, Casewhere will take all.
(Inherited from DataApiQuery)
Top
Methods
 NameDescription
Public methodFilterBy(DynamicFilter) Set query filter. For chaining purpose.
Public methodFilterBy(Object) Set query filter. For chaining purpose.
Public methodStatic memberFor Creates the query object.
Public methodGeoNear Create a geospatial queries that find documents near a specific location, taking distance constraints into account.
Public methodGeoNearSphere Create a geospatial query for finding documents near a specific geographic location, emphasizing spherical calculations.
Public methodIncludeTotalItems Determines whether Casewhere returns the total number of ActualData Objects. For chaining purpose.
Public methodNear Create a geospatial queries that find documents near a specific location, taking distance constraints into account.
Public methodNearSphere Create a geospatial query for finding documents near a specific geographic location, emphasizing spherical calculations.
Public methodOrderBy Set query sorting. For chaining purpose.
Public methodPaging Set query paging. For chaining purpose.
Public methodProjectOn Set query projection. For chaining purpose.
Public methodSetHintIndex Specify a hint index name for this query.
Public methodSetHintIndexForCount Specify a hint index name for this counting query.
Public methodSetMaxQueryTimeout Specify max timeout for this query.
Public methodSetParameter Add a parameter into the parameters of the query.
Public methodSetParameters Set parameters for the query.
Public methodToRuntimeQuery Convert DataSourceApiQuery to PagedDataSourceQuery. Ensure ProjectedFields has Id.
Public methodWithCustomCollation Specify a custom collation for this query. If not specified, the data source's collation will be used, if not specified too, the default collation will be used.
Top
Example
C#
var filter = FilterBuilder.Create().Eq("DepartmentId", ctx.Input.Id).Eq("Active", true).Build();
var query = DataSourceApiQuery.For("EmployeeWithDepartments")
    .FilterBy(filter)
    .ProjectOn("Username", "Department")
    .OrderBy("Firstname", true)
    .Paging(0, 10);
var result = ctx.Use<IDataApi>().Search(query);
See Also