C# ドライバーを使用してサブコレクションをモデル化しようとしていますが、それが難しいと感じています。私がそれを行うのを手伝ってくれますか、それとも同じことの本格的な例を教えてください。
私はこれを達成しようとしています。
{
id:"id", name: 'name', Tokens:[{name:"yes",expiry:'Today'}, {name:"Hello", expiry:"tomorow"}]
}
私はこのようなクラスをモデル化しました
Class sample
{
[BSON]
public string id{get; set;}
public string name{get; set;}
public TokensCollection[] tokens(get; set;}
}
public class TokensCollection
{
public string name{get;set;}
public string expiry{get;set;}
}
そして、リポジトリで私はこのように同じものを初期化しようとしています、
Sample sample1 = new Sample{
id = ObjectId.GenerateNewId().ToString();
name = "name";
//Best way to model this? any pointers?
for (int index =1; index <=2; index++)
{
tokens[index].name = "me";
tokens[index].expiry = "Today"
}
collection.insert(sample1);
誰かがこれで私を助けてくれますか?