i found the way to check is the value contains in simple array :
var filter = Builders.Filter.AnyEq(x => x.Tags, \"mongodb\");
There is ElemMatch
ElemMatch
var filter = Builders.Filter.ElemMatch(x => x.Tags, x => x.Name == "test"); var res = await collection.Find(filter).ToListAsync()