I am filtering a non-spatial feature service cast a feature layer. How can I get the record count after the search is complete? I know I can use the length of feature layer graphic provider if the feature layer is an actual feature layer. But how can I the number of records for a non-spatial table (named yourTable)? How can I modify the last line of the code snippet in this case?Thank you so much in advanceThanksprivate function doSearch():void { myAttributeTable.featureLayer = myFeatureLayer var defexpr:String = searchattribute + eqsymbol + "'" + qText.text + "'"; yourTable.definitionExpression = defexpr myAttributeTable.featureLayer = yourTable Alert.show(defexpr) totalGraphicsShown = "Total records shown: " + (yourTable.graphicProvider as ArrayCollection).length