Hi Team,
I have a collection where i have incidents data in which if i pass the incident number more than 2 in comma separated, i want those documents into var variable.
Tried the below code but it is not working:
var filter = Builders<BsonDocument>.Filter.Eq("IncidentNumber", new[] { "INC12344444", "INC34455555" });
var result = collection.Find(filter).ToList();
Please give the right code.
Thanks,
G charan.