protected virtual MongoConfigurationBuilder GetConfiguration()
{
var builder
= new MongoConfigurationBuilder();
builder.ReadConnectionStringFromAppSettings(
"tests");
return builder;
}
//数据映射类(key,value)
class ListInfo
{
public int key { get; set; }
public object value { get; set; }
}
static void Main(string[] args)
{
var config
= new MongoConfigurationBuilder();
// COMMENT OUT FROM HERE
config.Mapping(mapping =>
{
mapping.DefaultProfile(profile
=>
{
profile.SubClassesAre(t
=> t.IsSubclassOf(typeof(ListInfo)));
});
mapping.Map
<ListInfo>();
});

config.ConnectionString(
"Server=127.0.0.1");
using (Mongo mongo = new Mongo(config.BuildConfiguration()))
{
mongo.Disconnect();
mongo.Connect();
try
{
var db
= mongo.GetDatabase("TestDb");
var collection
= db.GetCollection<ListInfo>();
//添加信息 需要就可以打开注释
ListInfo list = BindVendor();
collection.Save(list);
var coll
= db.GetCollection("ListInfo");
var info
= coll.Find(new Document().Add("key", 7888)).Documents.ToList();
string showinfo = "";
foreach (Document item in info)
{

var listd
= item.Values.ToList();
showinfo
+= "编号:" + listd[1];
List
<Document> items = (listd[2] as List<Document>);
foreach (var item1 in items)
{
var item2
= item1.ToList()[1].Value;
showinfo
+= "名称:" + item2;
}

}
Console.WriteLine(showinfo);
}
catch { }
}
Console.ReadKey();
}

#region 集合信息

#region 添加信息到结合
private static ListInfo BindVendor()
{
vendor square
= new vendor()
{
vendorid
= 2,
vendorname
= "西郊汽配城",
itemid
= DateTime.Now.Second
};
List
<vendor> list = new List<vendor>();
list.Add(square);
ListInfo listinfo
= new ListInfo()
{
key
= 7888,
value
= list
};
return listinfo;
}
#endregion
#region 实体类
class vendor
{
public int vendorid { get; set; }
public string vendorname { get; set; }
public int itemid { get; set; }
}
#endregion

#endregion

posted on 2011-06-01 14:56  酷&酷  阅读(2536)  评论(0编辑  收藏  举报