I have a simple point feature layer. When using the following properties:
Mode = FeatureLayer.QueryMode.OnDemand;
OnDemandCacheSize = 0;
...a point gets selected (typically topmost in the associated FeatureDataGrid) after most pan or zoom operations. This interacts with the "Auto Zoom to Selected" option to create a genuinely frustrating user experience.
I wrote an event handler for Map.ExtentChanged to deselect any rogue points, but no points are selected at the time this event fires. Any suggestions would be appreciated.