1
我正在使用MongoRepository並希望在兩個不同的集合之間創建引用。MongoDB C#對其他集合的引用
例如,一個表單可以有一個表單的鏈接。它想表示:
public class Form : IEntity{
public string Id {get;set;}
public string Report {get;set;} // represents the string form of the ObjectId
}
public class Report : IEntity{
public string Id {get;set;}
}
我想獲取與報告格式文件嵌套,如:
static MongoRepository<Form> forms = new MongoRepository<Form>();
var form = forms.Single(f => f.id == "1");
,結果是這樣的:
{
"id": "1",
"Report": {
"id": "2"
}
}
這是可能的內這個框架?是否有可能使用C#驅動程序庫?
@ l3amon - 好吧,這是我的想法,我誤導了這一點。 – amcdnl