如果我有一個對象有一個列表。我應該將該列表存儲在與對象相同的文檔中,還是將該列表存儲在帶有引用的單獨文檔中。或者我應該將它存儲在兩者中,也不是說照片列表對象的大小會增加,謝謝任何建議。RavenDB模型設計一對多
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; }
}