Frage

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?

War es hilfreich?

Lösung

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

Andere Tipps

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top