how to convert result of find from mongoDB to c# enumeravle code example
Example: find mongodb c# with task T
var collection = database.GetCollection<ClassA>(Collection.MsgContentColName);
var doc = collection.Find(filter).ToListAsync();
doc.Wait();
return doc.Result;