Skip to content

Commit 7ec1dd2

Browse files
authored
Update build-queries-with-queryexpression.md
Remove duplicate link
1 parent 7c84581 commit 7ec1dd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerapps-docs/developer/data-platform/org-service/build-queries-with-queryexpression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ contributors:
2020
In Microsoft Dataverse, you can use the <xref:Microsoft.Xrm.Sdk.Query.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 <xref:Microsoft.Xrm.Sdk.Query.QueryBase> class is the base class for query expressions. There are three derived classes: <xref:Microsoft.Xrm.Sdk.Query.QueryExpression>, <xref:Microsoft.Xrm.Sdk.Query.QueryByAttribute> and <xref:Microsoft.Xrm.Sdk.Query.FetchExpression>. The `QueryExpression` class supports complex queries. The `QueryByAttribute` class is a simple means to search for table rows where columns match specified values.
2121

2222
> [!NOTE]
23-
> 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](../fetchxml/overview.md)[Query data using FetchXml](../fetchxml/overview.md)
23+
> 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](../fetchxml/overview.md)
2424
2525
Query expressions are used in methods that retrieve more than one row, such as the <xref:Microsoft.Xrm.Sdk.IOrganizationService>.<xref:Microsoft.Xrm.Sdk.IOrganizationService.RetrieveMultiple*> method, in messages that perform an operation on a result set specified by a query expression, such as <xref:Microsoft.Crm.Sdk.Messages.BulkDeleteRequest> and when the ID for a specific record is not known.
2626

0 commit comments

Comments
 (0)