//Get the layer you want FeatureLayer featureLayer = MobileApplication.Current.Project.FindFeatureLayer("Clients"); //Get the data table and then read it FeatureDataTable fDataTable = featureLayer.GetDataTable(); using(FeatureDataReader fDataReader = featureLayer.GetDataReader()) { int globalIdIndex = fDataReader.GlobalIdColumnIndex; fDataReader.GetValue(globalIdIndex); // here you will get the value of the Global ID, I have not tried it but it may work. }
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.