queryString = " ..." ;
ItemIterable<QueryResult> results = session.query(queryString, false);
// this line simply fails, it doesn't throw an exception.
for (QueryResult qResult : results) {
// ....
}
在开始 for-loop 之前有什么方法可以检查结果是否为空?
谢谢