took me awhile to figure out the proper way to establish a connection with Simple.Data.MongoDB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Simple.Data; | |
using Simple.Data.MongoDB; | |
// connect | |
dynamic db = Database.Opener.OpenMongo("mongodb://localhost:27017/myDB"); | |
// insert | |
dynamic user = new ExpandoObject(); | |
user.FirstName = "Joe"; | |
user.LastName = "Smith"; | |
user.Email = "jsmith@test.com"; | |
db.Users.Insert(user); | |
// find | |
dynamic existingUser = db.Users.FindByEmail("jsmith@test.com"); |
Resources
You can install all of the dlls using Nuget, search for Simple.Data.MongoDB and install that package it will bring in the rest
Some of the errors I received on my journey
From Simple.Data
Message=No valid exports were found that match the constraint '((exportDefinition.ContractName == "Ado") AndAlso (exportDefinition.Metadata.ContainsKey("ExportTypeIdentity") AndAlso "Simple.Data.Adapter".Equals(exportDefinition.Metadata.get_Item("ExportTypeIdentity"))))', invalid exports may have been rejected.And from mongo driver when my connection string was not in the correct format, I was using the wrong port
Message=No connection could be made because the target machine actively refused it 127.0.0.1:
2 comments:
So what caused that 'No exports' exception and what fixed it? Having the same thing but cannot figure out what to do to resolve it.
honestly - I can't remember :(
it might have been use of var vs dynamic
// works
dynamic db = Database.Opener.OpenMongo(...
// errors ???
var db = Database.Opener.OpenMongo(...
I haven't done any c# in a few months and only spent a few days with simple.data at the time I posted this
I would contact the authors on github if this doesn't help
Post a Comment