| 不具合 ID 番号 |
BUG-000180019 |
| 送信されました | October 7, 2025 |
| 最終更新日 | December 16, 2025 |
| 適用対象 | ArcGIS Pro SDK for .NET |
| 見つかったバージョン | 3.5 |
| オペレーティング システム | Windows OS |
| オペレーティング システムのバージョン | 11.0 64 bit |
| ステータス | As Designed
開発チームによる確認後に、この動作が設計どおりであると判断されました。 詳細については、「参考情報」セクションをご参照ください。
|
参考情報
This behavior is as designed.
var fcName = selectedLayerTable.GetName();, returns fully qualified name (database_name.schema_name.table_name)
FeatureClassDescription does not allow dot (.) or other special characters in a feature class name. Strip database_name.schema_name from the feature class name before reusing it, as shown in the sample snippet below for enterprise geodatabases.
var fcDescription = new FeatureClassDescription(fcName.Split('.').Last(), fieldDescriptions, originalFeatureClassDescription.ShapeDescription);
対処法
As a temporary workaround, manually add the required fields using the Add Field geoprocessing tool in ArcGIS Pro. Refer to https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/add-field.htm for more information.
再現の手順