我有以下查询:
db.asset.where("type").equals(type).each(e => { ... });
现在e
将文件(e.binary)保存为二进制字符串。
在每个我只想处理一组特定的属性,但不是e.binary,因为它减慢了应用程序。
有没有办法选择一组返回的属性?
或者只能返回完整的行?
提前致谢:)
答案 0 :(得分:0)
试试这个...
db.asset.where("type").equals(type).each(e => {
return { FirstProperty: e.MyProperty1, SecondProperty: e.MyProperty2 };
}).then(function(myProperties){
...
});