laptop and a wrench

Bug

A feature is not drawn correctly at all zoom levels when using the Version.Reconcile() function in ArcGIS Pro SDK for .NET.

ArcGIS Pro SDK for .NET
Bug ID Number BUG-000177035
SubmittedJune 9, 2025
Last ModifiedJuly 1, 2025
Applies toArcGIS Pro SDK for .NET
Version found3.5
Operating SystemWindows OS
Operating System Version11.0 64 bit
StatusWill Not Be Addressed

Additional Information

Users need to call CoreDataExtensions.RefreshDatastore(version) after completing the reconciliation operation in their provided code for support. QueuedTask.Run(() => { using var versionManager = GetVersionManagerFromMap(); using var version = versionManager?.GetCurrentVersion(); if (version is null) return false; var result = version.Reconcile( new ReconcileOptions(version.GetParent()) { ConflictResolutionMethod = ConflictResolutionMethod.Continue, }); CoreDataExtensions.RefreshDatastore(version); return result?.HasConflicts ?? false; });

Workaround

Users need to call CoreDataExtensions.RefreshDatastore(version) after the reconciliation operation in their provided code for support.

QueuedTask.Run(() => { using var versionManager = GetVersionManagerFromMap(); using var version = versionManager?.GetCurrentVersion(); if (version is null) return false; var result = version.Reconcile( new ReconcileOptions(version.GetParent()) { ConflictResolutionMethod = ConflictResolutionMethod.Continue, }); CoreDataExtensions.RefreshDatastore(version); return result?.HasConflicts ?? false; });

Steps to Reproduce

Bug ID: BUG-000177035

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