Good afternoon,
In a REST service, how can I query features to find those that are still active or have an Estimated Time to Incident Resolution later than the current time?
https://services.arcgis.com/..../ArcGIS/rest/services/...../FeatureServer/0
Found it:
ESTRESDATE >= date '2025-07-03 14:46:17'
in C#:
string formattedDate = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
string whereCls = "ESTRESDATE >= date '" +formattedDate + "'";