コードは次のとおりです。
queryTree = SC.Query.local('Tree.Category',
"categoryId = {categoryId}", {
categoryId: this.get('guid'),
orderBy: "name ASC"
});
queryNote = SC.Query.local('Tree.Note',
"categoryId = {categoryId}", {
categoryId: this.get('guid'),
orderBy: "name ASC"
});
var arrayCategory = Tree.store.find(queryTree);
var arrayNote = Tree.store.find(queryNote);
//Concatenate arrayCategory to arrayNote
結果をarrayCategoryとarrayNoteに追加するレコードの新しい配列を返したいです。ドキュメントを調べましたが、連結機能がないようです。