IV
Size: a a a
IV
AW
AW
AW
IV
AW
Ɖ
TN
Ɖ
Ɖ
TN
TN
В
TN
IV
In general if you want to cast a list of ObjectIds to BsonValues, you need to do a project and explicit cast like this:
ObjectsList.Select(v => (BsonValue)v).ToList();
I believe it's due to the reasons explained in the answers to this question.
In your case where you have a list of Objects rather than ObjectIds, I found you need to put in an additional cast to ObjectId - otherwise you get the same error as with the code you've tried.
ObjectsList.Select(v => (BsonValue)(ObjectId)v).ToList();
TN
ПП