我正在开发一个与ActiveAndroid ORM配合使用的Android应用程序。
我正在寻找一个简单的查询来从ID列表中获取模型列表。但我无法找到解决方案。
使用字段List<Long> ids
,如何获取List<MyModel.cass>
。
我试过了,没有成功。
String concatIds = "(1,2,3,4)";
new Select().from(MyModel.class).where("Id in ?",concatIds).execute();
提前致谢。
答案 0 :(得分:0)
我也在寻找解决方案。这是我到目前为止找到的最好结果:https://github.com/pardom/ActiveAndroid/issues/392
答案 1 :(得分:-1)
new Select()。from(MyModel.class).where(&#34; Id in(1,2,3,4)&#34;)。execute();