This code is being executed and it returns true.
The new point feature says it has been added and you can see it in the attribute table.
Yet it won't draw or jump to the point like any others that were added in ArcGIS Pro directory.
Any ideas?
Thanks,
-Bill
Code snippet.
var edit_op = new EditOperation();
edit_op.Name = $"Create {layer.Name}";
edit_op.SelectNewFeatures = true;
edit_op.Create(layer.FeatureLayer, attributes);
bool result = edit_op.Execute();
SfaLogger.Log("Return from insert operation is: " + result.ToString());
BTW:
I have something very similar in ArcGIS Desktop using ArcObject code and the same point inserts and
is drawn fine in ArcMap. The point coming into the API from our software is identical in both cases.