Skip to content

Commit c9fad30

Browse files
committed
fix links
1 parent 9625a8a commit c9fad30

File tree

1 file changed

+3
-3
lines changed
  • powerapps-docs/developer/data-platform/org-service/queryexpression

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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 [Quick Start: Execute an SDK for .NET request (C#)](../org-service/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.
@@ -25,7 +25,7 @@ You can use the following `OutputFetchRequest` static method to test FetchXml qu
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

28-
The `OutputQueryExpression` method depends on the [ConsoleTables NuGet package](https://www.nuget.org/packages/ConsoleTables/2.5.0) and requires that all [entity](reference/entity.md) or [link-entity](reference/link-entity.md) element [attribute elements](reference/attribute.md) are included, which is a best practice.
28+
The `OutputQueryExpression` method depends on the [ConsoleTables NuGet package](https://www.nuget.org/packages/ConsoleTables/2.5.0) and requires that all all [LinkEntity](xref:Microsoft.Xrm.Sdk.Query.LinkEntity) instances that contain columns specify an [EntityAlias](xref:Microsoft.Xrm.Sdk.Query.LinkEntity.EntityAlias).
2929

3030
```csharp
3131
/// <summary>
@@ -165,7 +165,7 @@ static void OutputQueryExpression(IOrganizationService service, QueryExpression
165165

166166
### Update SDK for .NET quick start sample
167167

168-
You can adapt the [Quick Start: Execute an SDK for .NET request (C#)](../org-service/quick-start-org-service-console-app.md) sample to test queries with the following steps:
168+
You can adapt the [Quick Start: Execute an SDK for .NET request (C#)](../quick-start-org-service-console-app.md) sample to test queries with the following steps:
169169

170170
1. Install the [ConsoleTables NuGet package](https://www.nuget.org/packages/ConsoleTables/2.5.0)
171171
1. Add the following using statements at the top of the `program.cs` file

0 commit comments

Comments
 (0)