La tua query mongo dovrebbe essere così:
db.testes.find({
'bets.DateTime': '2013-09-10T09:06:43.333'
}, {
'bets': {
$elemMatch: {
'DateTime': '2013-09-10T09:06:43.333'
}
}
})
O qualcosa del genere:
db.testes.find({
'bets.DateTime': '2013-09-10T09:06:43.333'
}, {
'bets.$': 1
})
Link utili:
- $ (operatore di proiezione)
- $elemMatch - Array di Documenti incorporati
- Limitazioni campo array
- $filter (aggregazione)