Вопрос

queryRaw returns a normal list! But, this isn't good for many records and I need lazy list.

So, How can get a lazy list from queryRaw?

Это было полезно?

Решение

I just added a new method called queryRawCreate, which returns a Query object. Using the query, you can obtain a LazyList now. It's pushed to GitHub. You will need to use the source version until the next release.

Relevant change: https://github.com/greenrobot/greenDAO/commit/16705725231219907c1c0b42f3ba653833de7230

Другие советы

Depending on your specific needs, it might work out using a standard QueryBuilder. Check out WhereCondition.StringCondition. Using this you can pass any SQL fragments for the WHERE clause to the query builder.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top