0
我正在使用ORMLite & SQLite作爲我的數據庫,我正在開發一個android應用程序。ORMLite foreigncollection - 對象搜索
1)我在Foreign-Collection對象中搜索一個特定的對象,如下所示。
Collection<PantryCheckLine> pantryCheckLinesCollection = pantryCheck.getPantryCheckLines();
Iterator iterator = pantryCheckLinesCollection.iterator();
while (iterator.hasNext()) {
pantryCheckLine = (PantryCheckLine) iterator.next();
//i'm searching for a purticular object match
}
2)否則,我可以直接從相關表中查詢並標識該項目。
我問的是這兩種方法哪一種會快得多?