I have a problem while using .count() method on CloudTableQuery
public void AccessEntites()
{
CloudTableQuery entries =
(from e in ServiceContext.CreateQuery<T>(TableName)
select e).AsTableServiceQuery();
int count = entries.Count(); //An error occurred while processing this request.
}
I just want to count the total number of elements we have in entries. What i am doing wrong?
Make sure your entries is not null.