I would like to check featuretable is exist in geodatabase.
How can I check it?
If you know the table name or display name of the table, you can check if table exists in a geodatabase.
```
var gdb = await Geodatabase.OpenAsync(localFilePath); var tb=gdb.GeodatabaseFeatureTables.Select(a => a.DisplayName == "Lines_Sync2"); if (tb != null)
MessageBox.Show("Table exists");
Thank you so much.
I could checked to exist featuretable.
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.