I have mongo objects that follows the following pattern. Tags is an array of objects.
{
"id" : "123",
...
"Tags" : [{
...
"first_name" : "jack",
"last_name" : "john",
"alive" : true
}]
}
How do I query this so that I can get a list of objects which contain an object in the tags array who's first_name property and last_name property matches a given string using the C# Mongo Driver.