我有两个系列:交易&帐户。
我需要将帐户加入交易,以便我可以在Accounts.acctType字段上进行分组。问题是Transactions.accountId的类型为'string',而Accounts._id的类型为'Int32'。
有没有办法解决这个问题,而无需更改Transactions.accountId类型?
当前查找代码:
$lookup: {
from: 'accounts',
localField: accountId,
foreignField: '_id',
as: 'accountData'
}
我需要什么:
$lookup: {
from: 'accounts',
localField: Number(accountId), //something like this
foreignField: '_id',
as: 'accountData'
}
或者:
$lookup: {
from: 'accounts',
localField: accountId,
foreignField: '_id.toString()', //or something like this
as: 'accountData'
}
答案 0 :(得分:1)
我最终进行了数据库更改,以使Id字段与数据类型内联。
答案 1 :(得分:0)