0
나는 모든 모임에 대해 전체 DB의 값을 업데이트하려고합니다. MongoCollection 업데이트 값이 무언가 같음
{
"Referent" : null
"Participants" : [
{
"Email" : "[email protected]",
"Present" : true
},
{
"Email" : "[email protected]",
"Present" : false
},
{
"Email" : "[email protected]",
"Present" : true
}
]
}
내가 이런 일 할 : 현재는 다음과 같습니다
if(meeting.Referent == null) {
foreach(var participant in meeting.Partipants) {
if(participant.Present) {
meeting.Referent = participant.Email;
}
}
}
은 물론 위의 코드는 MongoCollection 작동하지 않습니다,하지만 난 그게 말이 바랍니다. 회의에 참석 한 무작위 (첫 번째 또는 마지막) 참가자에게 회의 지시 대상을 설정하려고합니다.
MongoCollection을 사용하면 어떻게 할 수 있습니까? 그래서 Mongo Shell에서 실행할 수 있습니까?