Consider the following structures
考虑以下结构
public class Parent
{
public ObjectId Id { get; set; }
public IEnumerable<Child> Children { get; set; }
}
public class Child
{
public string Value { get; set; }
}
puConsider the following structures
考虑以下结构
public class Parent
{
public ObjectId Id { get; set; }
public IEnumerable<Child> Children { get; set; }
}
public class Child
{
public string Value { get; set; }
}
pu