Skip to content

Commit 32ddf58

Browse files
committed
Merge branch 'main' into jdaly-main-work-with-data
2 parents aef3e9e + 810d864 commit 32ddf58

File tree

86 files changed

+4151
-1036
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+4151
-1036
lines changed

.openpublishing.redirection.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,65 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "powerapps-docs/developer/data-platform/org-service/build-queries-with-queryexpression.md",
5+
"redirect_url": "queryexpression/overview",
6+
"redirect_document_id": "false"
7+
},
8+
{
9+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-queryexpression-class.md",
10+
"redirect_url": "queryexpression/overview",
11+
"redirect_document_id": "false"
12+
},
13+
{
14+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-conditionexpression-class.md",
15+
"redirect_url": "queryexpression/filter-rows",
16+
"redirect_document_id": "false"
17+
},
18+
{
19+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-filterexpression-class.md",
20+
"redirect_url": "queryexpression/filter-rows",
21+
"redirect_document_id": "false"
22+
},
23+
{
24+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-the-columnset-class.md",
25+
"redirect_url": "queryexpression/select-columns",
26+
"redirect_document_id": "false"
27+
},
28+
{
29+
"source_path": "powerapps-docs/developer/data-platform/org-service/page-large-result-sets-with-queryexpression.md",
30+
"redirect_url": "queryexpression/page-results",
31+
"redirect_document_id": "false"
32+
},
33+
{
34+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-left-outer-join-queryexpression-query-records-not-in.md",
35+
"redirect_url": "queryexpression/join-tables#find-records-not-in-a-set",
36+
"redirect_document_id": "false"
37+
},
38+
{
39+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-conditionexpression-class.md#column-comparison",
40+
"redirect_url": "queryexpression/filter-rows#filter-on-column-values-in-the-same-row",
41+
"redirect_document_id": "false"
42+
},
43+
{
44+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-conditionexpression-class.md#record-count",
45+
"redirect_url": "queryexpression/count-rows",
46+
"redirect_document_id": "false"
47+
},
48+
{
49+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-filterexpression-class.md#about-the-isquickfindfilter-property",
50+
"redirect_url": "quick-find",
51+
"redirect_document_id": "false"
52+
},
53+
{
54+
"source_path": "powerapps-docs/developer/data-platform/org-service/use-queryexpression-class.md#use-sql-hints-in-a-query",
55+
"redirect_url": "queryexpression/optimize-performance#query-hints",
56+
"redirect_document_id": "false"
57+
},
58+
{
59+
"source_path": "powerapps-docs/developer/data-platform/org-service/build-queries-with-queryexpression.md#configuration-for-quick-find",
60+
"redirect_url": "quick-find",
61+
"redirect_document_id": "false"
62+
},
363
{
464
"source_path": "powerapps-docs/developer/data-platform/tools/devtools-create-plugin.md",
565
"redirect_url": "/power-platform/developer/howto/vs-create-plugin",

powerapps-docs/developer/data-platform/attachment-annotation-files.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1005,7 +1005,7 @@ More information:
10051005

10061006
- [Use the SDK for .NET](org-service/overview.md)
10071007
- [IOrganizationService.RetrieveMultiple Method](xref:Microsoft.Xrm.Sdk.IOrganizationService.RetrieveMultiple%2A)
1008-
- [Build queries with QueryExpression](org-service/build-queries-with-queryexpression.md)
1008+
- [Build queries with QueryExpression](org-service/queryexpression/overview.md)
10091009

10101010

10111011
# [Web API](#tab/webapi)
@@ -1081,7 +1081,7 @@ More information:
10811081

10821082
- [Use the SDK for .NET](org-service/overview.md)
10831083
- [IOrganizationService.RetrieveMultiple Method](xref:Microsoft.Xrm.Sdk.IOrganizationService.RetrieveMultiple%2A)
1084-
- [Build queries with QueryExpression](org-service/build-queries-with-queryexpression.md)
1084+
- [Build queries with QueryExpression](org-service/queryexpression/overview.md)
10851085
- [IOrganizationService.Update Method](xref:Microsoft.Xrm.Sdk.IOrganizationService.Update%2A)
10861086

10871087
# [Web API](#tab/webapi)

powerapps-docs/developer/data-platform/auditing/retrieve-audit-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ static void ShowNumberContactsDeletedByUserQE(
321321

322322
Learn more about:
323323

324-
- [Build queries with QueryExpression](../org-service/build-queries-with-queryexpression.md)
324+
- [Build queries with QueryExpression](../org-service/queryexpression/overview.md)
325325

326326

327327
`ShowNumberContactsDeletedByUserFetchXml` uses <xref:Microsoft.Xrm.Sdk.Query.FetchExpression> with a query composed using FetchXml.

powerapps-docs/developer/data-platform/best-practices/business-logic/implement-all-types-of-queries-when-filtering-preoperation-retrievemultiple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Unified Interface replaced the legacy web client for model-driven apps. Unified
7878
[Sample: Modify query in PreOperation stage](../../org-service/samples/modify-query-preoperation-stage.md)<br />
7979
[Query data using the SDK for .NET](../../org-service/entity-operations-query-data.md)<br />
8080
[Query data using FetchXml](../../fetchxml/overview.md)<br />
81-
[Build queries with QueryExpression](../../org-service/build-queries-with-queryexpression.md)<br />
81+
[Build queries with QueryExpression](../../org-service/queryexpression/overview.md)<br />
8282
[Limit the registration of plug-ins for Retrieve and RetrieveMultiple messages](limit-registration-plugins-retrieve-retrievemultiple.md)<br />
8383
[Unified Interface Community](https://community.dynamics.com/forums/thread/?discussionforumid=bc304ecc-c131-4b63-92dd-7464bba3ce3b)
8484

powerapps-docs/developer/data-platform/best-practices/work-with-data/retrieve-specific-columns-entity-via-query-apis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ Queries submitted to retrieve data from Dynamics 365 should not select all colum
144144
### See also
145145

146146
<xref href="Microsoft.Xrm.Sdk.Query.ColumnSet?text=ColumnSet Class" /><br />
147-
[Use of the ColumnSet Class](../../org-service/use-the-columnset-class.md)<br />
148-
[Build queries with QueryExpression](../../org-service/build-queries-with-queryexpression.md)<br />
147+
[Select columns using QueryExpression](../../org-service/queryexpression/select-columns.md)<br />
148+
[Query data using QueryExpression](../../org-service/queryexpression/overview.md)<br />
149149

150150

151151
[!INCLUDE[footer-include](../../../../includes/footer-banner.md)]

powerapps-docs/developer/data-platform/bypass-custom-business-logic-preview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ Use this FetchXml query to return `step.sdkmessageprocessingstepid` values you c
287287

288288
### Limit to the number of steps
289289

290-
To ensure that the parameter size isn't too large, the default limit on the number of steps you can pass is three. The limit is controlled using data in the [Organization table OrgDbOrgSettings column](reference/entities/organization.md#BKMK_OrgDbOrgSettings). Don't try to edit this value yourself. Use the [OrgDBOrgSettings tool for Microsoft Dynamics CRM](https://support.microsoft.com/topic/orgdborgsettings-tool-for-microsoft-dynamics-crm-20a10f46-2a24-a156-7144-365d49b842ba) or [OrgDbOrgSettings app](https://github.com/seanmcne/OrgDbOrgSettings?tab=readme-ov-file#where-to-find-the-releases) to change the `BypassBusinessLogicExecutionStepIdsLimit` value.
290+
To ensure that the parameter size isn't too large, the default limit on the number of steps you can pass is three. The limit is controlled using data in the [Organization table OrgDbOrgSettings column](reference/entities/organization.md#BKMK_OrgDbOrgSettings). Use the [OrgDBOrgSettings tool for Microsoft Dynamics CRM](https://support.microsoft.com/topic/orgdborgsettings-tool-for-microsoft-dynamics-crm-20a10f46-2a24-a156-7144-365d49b842ba) or [OrgDbOrgSettings app](https://github.com/seanmcne/OrgDbOrgSettings?tab=readme-ov-file#where-to-find-the-releases) to change the `BypassBusinessLogicExecutionStepIdsLimit` value.
291291

292292
The maximum recommended size for this limit is 10 steps.
293293

powerapps-docs/developer/data-platform/custom-api-tables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ GET [Organization URI]/api/data/v9.1/customapis?$select=
8181

8282
# [QueryExpression](#tab/queryexpression)
8383

84-
More information: [Build queries with QueryExpression](org-service/build-queries-with-queryexpression.md)
84+
More information: [Build queries with QueryExpression](org-service/queryexpression/overview.md)
8585

8686
```csharp
8787
string conn = $@"

0 commit comments

Comments
 (0)