Would there be a reason I don't see ColumnValues for a given Feature when calling
InMemoryFeatureLayer tmpLayer = MyMap.FindFeatureLayer("layerName") as InMemoryFeatureLayer;
//does work
foreach (Feature feature in tmpLayer.InternalFeatures)
//doesn't work
(Feature feature in tmpLayer.QueryTools.GetAllFeatures(ReturningColumnsType.AllColumns))
foreach
I do see column values for a given feature if I interate through the internalfeatures of the layer though.
Any ideas?