laptop and a wrench

Bug

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
Bug ID Number BUG-000179642
SubmittedSeptember 22, 2025
Last ModifiedDecember 10, 2025
Applies toArcGIS Pro SDK for .NET
Version found3.5
Operating SystemWindows OS
Operating System Version11.0 64 bit
Version Fixed3.7
StatusFixed

Additional Information

This issue is addressed in ArcGIS Pro 3.7

Workaround

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."); } } }

Steps to Reproduce

Bug ID: BUG-000179642

Software:

  • ArcGIS Pro SDK for .NET

Get notified when the status of a bug changes

Download the Esri Support App

Discover more on this topic

Get help from ArcGIS experts

Contact technical support

Download the Esri Support App

Go to download options