Ngoài ra, lỗi xây dựng có lẽ là do InsertMany phương thức đang mong đợi một bộ sưu tập (IEnumerable , List hoặc Array ..) của BsonDocument thay vì BsonArray .
thử:
var EmpInfoArray = new List<BsonDocument>() { //Changed BsonArray to List<BsonDocument>
new BsonDocument
{
{"EmpID", "100"},
{"EmpName", "John"},
{"EmpMobile", new BsonArray
.
.
.