I am using MongoDB C# driver "2.13.0" with MongoDB.Bson version "2.13.0" to connect and insert and retrieve data from MongoDB.
Now as per official website the document limit is 16 MB max.
But when I am trying to insert data which is in KB's if I put it in Notepad but the code is complaining the size limit.
System.FormatException: Size 16948171 is larger than MaxDocumentSize 16793600
MongoURL = new MongoUrl("...");
MongoClientSettings = MongoClientSettings.FromUrl("");
MongoClient mongoClient = new MongoClient("");
dbConnection = mongoClient.GetDatabase("DatabaseName");
................
collection.InsertOne(new {});
But when I am using file to insert from MongoDB shell using command it's working fine. Means it's not complaining for the size there.