The ID for my "Student" object is a Guid that's stored like this:
> db.Students.findOne({FirstName:'Toral'})
{
"_id" : BinData(3,"YS5eUsfjXE+GT5Nl5+9CIw=="),
I have a reference to that ID in another user (yeah, I know, it wasn't my call). It's stored as the Guid ToString, so we get something like this>
> db.SiteUsers.findOne({Username:'Toral'})
{
"_id" : BinData(3,"erAlL11vYUmLFrrE48abdg=="),
"StudentId" : "525e2e61-e3c7-4f5c-864f-9365e7ef4223",
Given the string "525e2e61-e3c7-4f5c-864f-9365e7ef4223", how can I query for BinData(3,"YS5eUsfjXE+GT5Nl5+9CIw==") ?