リストのあるオブジェクトがある場合。そのリストをオブジェクトと同じドキュメントに保存するか、参照付きの別のドキュメントにそのリストを保存する必要があります。または、両方に保存する必要があります。また、アドバイスのおかげで、写真リストのオブジェクトサイズが大きくなることはありません。
public class Album
{
public string Name { get; set; }
//Should I store this inside of the album document?
public List<Photo> Photos {get; set; }
}
public class Photo
{
public string Title { get; set; }
}