I would like to count the result of the query and I´m using the API Parse. The code:
string appId = ConfigurationManager.AppSettings["ParseApplicationID"].ToString();
string dotNetId = ConfigurationManager.AppSettings["ParseNetID"].ToString();
ParseClient.Initialize(appId, dotNetId);
var query = ParseObject.GetQuery("Installation").WhereEqualTo("deviceType", "ios");
var count = await query.CountAsync();
but the count is 0 and there is a lot of ios devices.
Is there any problem with my code?
