"WHERE IN" 使用 greendao 的语句 Android ORM

"WHERE IN" statement using greendao Android ORM

我正在使用 greendao 在我的应用程序中使用 sqlite 数据库。
我需要具有 where in 条件
这样的功能 我正在寻找这样的方法或任何其他可能的方法,但不使用原始查询。

我需要执行此类查询 SELECT * FROM news WHERE id_company IN (SELECT id FROM company WHERE state=1

请建议使用 GreenDAO ORM 执行此类查询的最佳方法。

你可以使用 Lists.transform() from Guava as described here link

List<Company> companies = session.getCompanyDao()
                           .queryBuilder()
                           .where(CompanyDao.properties.state.eq(1))
                           .list();

Function<Company, Integer> companyToId = new Function<Company,Integer>() { 
    public String apply(Company c) { return c.getId(); }
};

List<Integer> ids = Lists.transform(companies, compnayToId);


session.getNewsDao()
.queryBuilder()
.where(NewsDao.Properties.id_company.in(ids))
.list();