RetrieveMembersBulkOperationRequest.Query Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the query for the retrieve operation that can be used to break up large data sets into pages. Optional.
public:
property Microsoft::Xrm::Sdk::Query::QueryBase ^ Query { Microsoft::Xrm::Sdk::Query::QueryBase ^ get(); void set(Microsoft::Xrm::Sdk::Query::QueryBase ^ value); };
public Microsoft.Xrm.Sdk.Query.QueryBase Query { get; set; }
member this.Query : Microsoft.Xrm.Sdk.Query.QueryBase with get, set
Public Property Query As QueryBase
Property Value
The query for the retrieve operation that can be used to break up large data sets into pages.
Remarks
Assign an instance of the QueryExpression, QueryByAttribute, or FetchExpression class. The query must specify the entity name bulkoperation
and a column set. If the column set includes attributes where IsValidForRead is false
or for which you do not have access, they are ignored and the message response contains no data for those attributes. You can find this information in the definition of the table. You can use a table definition browser like the one described in Browse table definitions in your environment.
This optional property is recommended for use if you are likely to return a large number of results and want to avoid a time-out. Use the PageInfo property or PageInfo property to retrieve subsequent pages of data. For more information, see Page large result sets with QueryExpression.