greenrobot / greenDAO

greenDAO is a light & fast ORM solution for Android that maps objects to SQLite databases.
http://greenrobot.org/greendao/
12.63k stars 2.89k forks source link

Query with limit() #1067

Open u3frajaeian opened 3 years ago

u3frajaeian commented 3 years ago

I want to read 1000 items each time I wrote the following code: dao.queryBuilder().limit(1000).list(); but it returned all items to me.