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.
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.