Hello! I am trying to enumerate attributes in a feature layer table. Another follow up to a previous question.
Using GeodatabaseFeatureTable.QueryFeaturesAsync(new() { WhereClause = "" }) to load all values.
This has worked for the Tally table, but not the Plot table in the feature layer. The only difference I see is Type: Layer(Hosted) vs Type: Table(Hosted)

GeodatabaseFeatureTable table = geodatabase.GetGeodatabaseFeatureTable("Plot");
await table.LoadAsync();
QueryParameters queryParams = new() { WhereClause = "" }; //all
FeatureQueryResult result = await table.QueryFeaturesAsync(queryParams);
IEnumerable<ArcGISFeature> features = result.Cast<ArcGISFeature>();
int count = features.Count(); //break here, 0 results????
Am I missing an argument? Is there a different API for loading features from the table in layers?