1
什麼是覆蓋蒙戈串行下列情形的最佳方式:蒙戈DB類重構
我有以下類
public Class Quest
{
public ObjectId _id {get; set;}
public string Name {get; set;}
public List<string> GalleryImagePaths {get; set;}
}
一個重構鍛鍊GalleryImagePaths財產後重構爲一個
public List<HttpFile> GalleryImagePaths {get; set;}
public Class HttpFile
{
string FilePath {get; set;}
string UriPath {get; set;}
}
現在默認的序列不能反序列化到
List<string> GalleryImagePaths
而新的數據文檔將被存儲在新的模式中。
這裏最好的做法是什麼?