Hi, when I excute the below codes, somethimes it will catch the "Invalid URI: URI string too long" exception.
QueryParameters queryParams = new QueryParameters()
{
WhereClause="name like '%"+ (stateName.ToUpper()) + "%'",
Geometry=searchGeometry
};
// Query the feature table
FeatureQueryResult queryResult = await _featureTable.QueryFeaturesAsync(queryParams);
I don't konw this is because there is something wrong with my input geometry or some else?