I would like to check featuretable is exist in geodatabase.
How can I check it?
Thank you so much.
I could checked to exist featuretable.
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");
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.