Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从我的表中获得一些记录,但 GreenDAO 不提供。像这样:
SELECT TOP 1 * FROM table_name
在 LINQ 中,您可以使用 获得最高记录Take(),GreenDAO 有什么解决方案吗?
Take()
每个人都可以提供一个建议吗?
您可以使用标准 QueryBuilder 指定限制:
List<YourEntity> entities = yourDao.queryBuilder().limit(1).list();
var mcc: SearchDao val list: List<Search?> =mcc.queryBuilder().orderDesc(SearchDao.Properties.Time).limit(8).list()