I'm attempting to create a feature layer in ARC GIS using a shape file but I'm getting the following exception when trying to open the shape file with ShapefileFeatureTable.OpenAsync
{"Geodatabase field exists: fid"}
var shapeFileFeatureTable = ShapefileFeatureTable.OpenAsync(@"...\myshape.shp").Result;
fl = new FeatureLayer(shapeFileFeatureTable)
{
// Set the rendering mode of the feature layer to be dynamic (needed for extrusion to work).
RenderingMode = FeatureRenderingMode.Dynamic,
IsVisible = true,
};