有人能告诉我如何在android studio中使用includeInlineCount()来计算azure数据库表中的行数吗?
我试过这种方法:

final MobileServiceList<Crime> result = mToDoTable.where().includeInlineCount().execute().get();

这种方法:
final MobileServiceList<Crime> result = mToDoTable.includeInlineCount().execute().get();

运行此代码没有出错。相反,本应显示行数的textview只显示每行的第一列的值。如何计算这些值并显示该数字?

最佳答案

@该隐,这似乎是一个有Count number of strings returned from Azure query的重复线程,请看答案。
谨致问候。

07-24 09:38