I am trying to get the version of the geodatabase of a feature layer. I couldnt figure out
so far I have this
var featureLayer = MapView.Active.Map.GetLayersAsFlattenedList().OfType<FeatureLayer>().FirstOrDefault();
CIMDataConnection currentDataConnection = featureLayer.GetDataConnection();
string connString = null;
var fufu = currentDataConnection.ReadXml;
var dd = fufu.Target;I am trying to get the conn string and create Geodatabse object but no luck. Anybody knows how to get the version?