1
私はc#とasp.net mvc(visual studio 2015)を使用します。mongodbをcに接続する#
MongoDB.Driver.MongoConfigurationException: The connection string 'mongodb:://localhost' is not valid.
と誤差源は次のとおりです:私は、C#にはMongoDBを接続しようとすると、このエラーが表示されます
var client = new MongoClient(Settings.Default.bigdataconexionstrin);
が、これは私のコードです:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Mvc;
using WebApplication5.Properties;
using MongoDB.Driver;
using MongoDB.Driver.Linq;
namespace WebApplication5.Controllers
{
[Authorize]
public class HomeController : Controller
{
public IMongoDatabase db1;
public HomeController()
{
var client = new MongoClient(Settings.Default.bigdataconexionstrin);
MongoClientSettings settings = new MongoClientSettings();
settings.Server = new MongoServerAddress("localhost", 27017);
this.db1 = client.GetDatabase(Settings.Default.db);
}
public ActionResult Index()
{
return View();
}
}
}
非常に良いです。私もmongodbに接続するために接続文字列の使用をやめました。 –