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