Tengo un inconveniente con el driver para c#, tengo Visual Studio 2019
y la pagina me dice que la conecion se realiza asi
var mongoUrl = new MongoUrl("mongodb+srv://User:<Password>@pruebachiAAA-verhd.mongodb.net");
_client = new MongoClient(mongoUrl);
var db = _client.GetDatabase("myfirstdb");
var collection = db.GetCollection<Student>("student");
Student student = new Student("Gino", "Grimaldos");
collection.InsertOne(student);
al ejecutarla tengo
MongoDB.Driver.MongoAuthenticationException: 'Unable to authenticate using sasl protocol mechanism SCRAM-SHA-1.'
Como puedo arreglar ello y que la conexion se mantenga
De antemano gracias profe, deberian sacar un curso de Mongo con C#