5

我无法编写查询来获取 android 中 green dao 的 Objectbox 数据库中的不同值

4

2 回答 2

1

通过此功能请求跟踪获取不同的值: https ://github.com/objectbox/objectbox-java/issues/198

我们目前正在收集需求,因此请随时在此处发表评论。

于 2017-10-31T08:39:07.680 回答
0

不知道是否有任何 BuildIn 方法可以做同样的事情,但我能够只使用 SQL 来计算不同的值。可能对你有帮助。

String query = "SELECT COUNT (DISTINCT "
                                + HomeDao.Properties.VisiblePageId.columnName+
                                ") from "
                                + HomeDao.TABLENAME
                                + " where "
                                + HomeDao.Properties.IsVisible.columnName + " = 1 and "
                                + HomeDao.Properties.IsActive.columnName + " = 1";
                        Integer count = 0;

                        Cursor cursor =
                                MainApplication.getInstance().getDaoSession().getDatabase().rawQuery(
                                        query, null
                                );

                        if(cursor.moveToFirst()){
                            count = cursor.getInt(0);
                        }
                        cursor.close();
于 2017-10-30T12:21:56.730 回答