有没有一种编程方式来使用连接表进行选择?
我做了 SugarRecord.findWithQuery(Class, query) 的工作,但我很好奇更好的方法
还没有……不过,我们应该尽快建造它。现在 QueryBuilder 有点有限。
不,您还不能,但我建议使用 Sugar 进行基本操作,然后对于复杂的查询只需使用 android 方式。
public class CustomQuery extends SQLiteOpenHelper{
private static final String DATABASE_NAME = "sugar_example.db";
private static final int DATABASE_VERSION = 1;
public CustomQuery(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
}