For example, I have this MongoDB:
In yii2, I want to write a query to find an email = 'abc'
. I have this code:
$query->select([])->from('Post')->where(['Comments.Email' => 'abc']);
But it does not work; please help me, as I'm beginner in Yii2 and MongoDB.