1

如何在另一个不是主键的字段中制作一个简单的sql,它使用类管理器的方法?有人知道吗?

未在官方文档 ( http://droidparts.org ) 中找到,因为仍在建设中!

谢谢大家!

4

1 回答 1

1

在一个EntityManager子类中:

// Select is used to provide data to EntityCursorAdapter
Select<EntityType> select = select().columns("_id", "name").where("external_id",
        Is.EQUAL, 10);
// alternatively, call execute() to get the underlying Cursor
Cursor cursor = select().where("name", Is.LIKE, "%%alex%%").execute();
于 2013-04-27T20:36:50.353 回答