//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. }
Membros conectados podem postar, seguir atualizações e mais. Novo aqui? Registre uma conta gratuita.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.