Is there a way to either get a ThinkGeo.MapSuite.Core.Feature or its Id from a System.Data.DataRow that was returned via an ExecuteQuery?
The dbf does not have a FeatureId column.
Below is a code snippet that shows the ExecuteQuery.
Thanks,
Dennis
ShapeFileFeatureLayer TheStreetsFeatures;
TheStreetsFeatures.Open();
System.Data.DataTable dtFeatures = TheStreetsFeatures.FeatureSource.ExecuteQuery("SELECT * FROM layer.dbf ORDER BY MyColumn");
foreach (System.Data.DataRow TheFeatureRow in dtFeature.Rows)
{
at this point how to get the Feature or its Id?
}