質問

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