Hi,
How do I add feature to FeatureLayer from another FeatureLayer with all column values?
I try like this:
//Works, but seems that doesn't add column values
myLayer.FeatureSource.AddFeature(feature);
//Doesn't work like this at all (invalid arguments). What should be the second variable?
myLayer.FeatureSource.AddFeature(feature, feature.ColumnValues);