Skip to content

Commit 43c9045

Browse files
committed
add links
1 parent c9fad30 commit 43c9045

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

powerapps-docs/developer/data-platform/org-service/queryexpression/overview.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ As explained in [Query data using the SDK for .NET](../entity-operations-query-d
9696
EntityCollection results = service.RetrieveMultiple(query);
9797
```
9898

99+
> [!TIP]
100+
> Try using the [QueryExpression sample code](sample.md) to use this method.
101+
99102
You can also use the [RetrieveMultipleRequest class](xref:Microsoft.Xrm.Sdk.Messages.RetrieveMultipleRequest) set the query to the [RetrieveMultipleRequest.Query property](xref:Microsoft.Xrm.Sdk.Messages.RetrieveMultipleRequest.Query) to sent the request using the [IOrganizationService.Execute Method](xref:Microsoft.Xrm.Sdk.IOrganizationService.Execute%2A).
100103

101104
```csharp
@@ -183,4 +186,7 @@ Learn how to select columns.
183186
> [!div class="nextstepaction"]
184187
> [Select columns](select-columns.md)
185188
189+
Try some queries.
186190

191+
> [!div class="nextstepaction"]
192+
> [QueryExpression sample code](sample.md)

powerapps-docs/developer/data-platform/org-service/queryexpression/sample.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ contributors:
1616
---
1717
# QueryExpression sample code
1818

19-
To try using QueryExpression with C#, you can use the `OutputQueryExpression` static method in this article by adapting the [Quickstart: Execute an SDK for .NET request (C#)](../quick-start-org-service-console-app.md)
19+
To try using QueryExpression with C#, you can use the `OutputQueryExpression` static method in this article by adapting the [Quickstart: Execute an SDK for .NET request (C#)](../quick-start-org-service-console-app.md).
2020

2121
> [!NOTE]
2222
> See [Paging Cookie example](page-results.md#paging-cookie-example) for sample code to retrieve data in pages.
2323
24-
You can use the following `OutputFetchRequest` static method to test FetchXml queries in a console application.
24+
You can use the following `OutputQueryExpression` static method to test QueryExpression queries in a console application.
2525

2626
The `OutputQueryExpression` method demonstrates how to use the [QueryExpression class](xref:Microsoft.Xrm.Sdk.Query.QueryExpression) and the [IOrganizationService.RetrieveMultiple method](xref:Microsoft.Xrm.Sdk.IOrganizationService.RetrieveMultiple%2A) to return an [EntityCollection](xref:Microsoft.Xrm.Sdk.EntityCollection) containing the requested data.
2727

0 commit comments

Comments
 (0)