Does anyone know how to get a scalar value using the Microsoft.Azure.Comos.CosmosClient?
I have looked through the web and cannot find any examples.
All I want to do is to be able to execute a query like this
SELECT value COUNT(c._id)
FROM c
WHERE c._ts > @timestamp
There doesn't seem to get any function on either the CosmosClient or the Container classes to handle the type of query.
Thanks