I wanna to get top some records from my table, but GreenDAO doesn't provide it. Like this:
SELECT TOP 1 * FROM table_name
In LINQ you can get top of records with Take()
, is there any solution for GreenDAO?
Could every one offer a suggestion?
You can specify a limit using standard QueryBuilder:
List<YourEntity> entities = yourDao.queryBuilder().limit(1).list();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With