Build queries with QueryExpression

In Microsoft Dataverse, you can use the QueryExpression class to programmatically build a query containing data filters and search conditions that define the scope of a database search. A query expression is used for single-object (table) searches. For example, you can create a search to return all accounts that match certain search criteria. The QueryBase class is the base class for query expressions. There are three derived classes: QueryExpression, QueryByAttribute and FetchExpression. The QueryExpression class supports complex queries. The QueryByAttribute class is a simple means to search for table rows where columns match specified values.

Note

The third derived class, FetchExpression is used with FetchXML, the proprietary Dataverse query language, can be used to perform some queries by using XML-based queries. More information: Query data using FetchXml

Query expressions are used in methods that retrieve more than one row, such as the IOrganizationService.RetrieveMultiple method, in messages that perform an operation on a result set specified by a query expression, such as BulkDeleteRequest and when the ID for a specific record is not known.

Warning

Don't retrieve all columns in a query because of the negative effect on performance. This is particularly true if the query is used as a parameter to an update request. In an update, if all columns are included this sets all field values, even if they are unchanged, and often triggers cascaded updates to child records.

To save a query so you can re-use it, you can convert it to FetchXML by using the QueryExpressionToFetchXmlRequest and save it as a saved query. More information: Saved queries

Alternatives to QueryExpression

There are two additional ways to create queries to retrieve records from Dataverse.

Configuration for Quick find

In Model-driven apps, there is a Quick Find feature. If a user provides search criteria in quick find that is not selective enough, the system detects this and stops the search. This supports a faster form of quick find and can make a big performance difference. This is controlled by the Organization table QuickFindRecordLimitEnabled column. When this Boolean column value is true, a limit is imposed on quick find queries.

In This Section

Using the QueryByAttribute Class
Using the QueryExpression Class
Using the ColumnSet Class
Using the ConditionExpression Class
Using the FilterExpression Class
Use a left outer join in QueryExpression to query for records "not in"
Page Large Result Sets with Query Expression and FetchXML
Sample: Retrieve With One-To-Many Relationship
Sample: Retrieve Multiple with Query By Attribute
Sample: Retrieve Multiple with Query Expression
Sample: Use QueryExpression with a paging cookie

Reference

QueryBase
QueryExpression
QueryByAttribute
RetrieveMultiple
ColumnSet
ConditionExpression
FilterExpression
PagingCookie

See also

Sample: Convert queries between Fetch and QueryExpression