You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: powerapps-docs/developer/data-platform/org-service/generate-early-bound-classes.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Generate early-bound classes for the SDK for .NET"
3
3
description: "Learn how to use the Power Platform CLI pac modelbuilder build command to generate early-bound classes for use with the Microsoft Dataverse SDK for .NET. This tool generates early-bound .NET classes that represent the Entity Data Model used by Dataverse."
4
-
ms.date: 10/18/2023
4
+
ms.date: 01/26/2024
5
5
author: kkanakas
6
6
ms.author: kartikka
7
7
ms.reviewer: pehecke
@@ -63,8 +63,7 @@ Use the following steps to get started:
63
63
"entitynamesfilter-comment": "Filters the list of entities are retrieved when reading data from Dataverse.",
64
64
"entityNamesFilter": [
65
65
"account",
66
-
"contact",
67
-
"sample_*"
66
+
"contact"
68
67
],
69
68
"entitytypesfolder-comment": "Folder name that contains entities.",
When you inspect the output, notice that it only generates classes for the tables specified by `entityNamesFilter` and only the messages specified in the `messageNamesFilter`. You should specify which tables (entities) and messages you use in your project. Otherwise, classes for all tables and messages are generated. You can use `*` as a wildcard character in these values. This is useful when items in your solution share a common customization prefix.
151
+
When you inspect the output, notice that it only generates classes for the tables specified by `entityNamesFilter` and only the messages specified in the `messageNamesFilter`. You should specify which tables (entities) and messages you use in your project. Otherwise, classes for all tables and messages are generated.
152
+
153
+
For `messageNamesFilter`, you can use `*` as a wildcard character in these values. This is useful when messages in your solution share a common customization prefix.
153
154
154
155
`pac modelbuilder build` writes the files into folders with names you can control in the settings file:
155
156
@@ -180,7 +181,7 @@ Here's an example showing how to generate files with the same settings as the ex
0 commit comments