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 支持应用程序

发现关于本主题的更多内容

获取来自 ArcGIS 专家的帮助

联系技术支持部门

下载 Esri 支持应用程序

转至下载选项