Manager _cblManager = new Manager(new DirectoryInfo(@"C:\Database"), ManagerOptions.Default);
Database _database = _cblManager.GetDatabase(dbname);
var vals = new Dictionary<String,Object> {
{ "text" , value },
{ "check" , false },
{ "created_at" , jsonDate }
};
var doc = _database .CreateDocument();
var result = doc.PutProperties (vals);
if (result == null)
throw new ApplicationException ("failed to save a new document");