Home > Blockchain >  Unable to access MongoCollection Class from MongoDB.Driver for C#
Unable to access MongoCollection Class from MongoDB.Driver for C#

Time:10-04

I am trying to access the error when trying to call Save()

CodePudding user response:

Save (as well as MongoCollection class itself) is deprecated method in the Legacy driver, the current driver doesn't have this functionality, see here

  • Related