laptop and a wrench

不具合

The GetGlobalID() method returns a GeodatabaseTopologyException error when trying to retrieve a global ID from dirty areas in a utility network.

ArcGIS Pro SDK for .NET
不具合 ID 番号 BUG-000179642
送信されましたSeptember 22, 2025
最終更新日December 10, 2025
適用対象ArcGIS Pro SDK for .NET
見つかったバージョン3.5
オペレーティング システムWindows OS
オペレーティング システムのバージョン11.0 64 bit
修正されたバージョン3.7
ステータスFixed

参考情報

This issue is addressed in ArcGIS Pro 3.7

対処法

using (TableDefinition tableDefinition = table.GetDefinition()) { string globalIDFieldName = tableDefinition.GetGlobalIDField(); using (RowCursor cursor = table.Search()) { if (cursor.MoveNext()) { // Bug // var gid = cursor.Current.GetGlobalID(); // 

Use the workaround to retrieve the GlobalID by its field name while the fix for the above bug is in progress. var gid = cursor.Current[globalIDFieldName]; Console.WriteLine($"First Dirty Area GlobalID: {gid}"); } else { Console.WriteLine("No dirty areas found."); } } }

再現の手順

不具合 ID: BUG-000179642

ソフトウェア:

  • ArcGIS Pro SDK for .NET

バグのステータスが変更されたときに通知を受け取る

Esri Support アプリのダウンロード

このトピックについてさらに調べる

ArcGIS エキスパートのサポートを受ける

テクニカル サポートへのお問い合わせ

Esri Support アプリのダウンロード

ダウンロード オプションに移動