2
我想將Guid列表存儲爲MongoDB中的字符串列表。對於單個的Guid我使用以下屬性:將MongoDb中的Guids列表存儲爲字符串列表
[BsonRepresentation(BsonType.String)]
public Guid GuidId{ get; set; }
有做同樣的屬性:
public List<Guid> GuidIdList { get; set; }
我發現你怎麼可以用約定做,但我真的很喜歡這樣做有一個屬性:
How can I tell the MongoDB C# driver to store all Guids in string format?
的缺點與存儲的GUID爲字符串的是,你不能使用MongoDB的聚合框架http://stackoverflow.com/a/11952062/ – chridam 2014-10-29 11:57:52
@chridam從來沒有這樣的字符串。你鏈接的是用2.6之前的二進制值來描述一個限制。 – JohnnyHK 2014-10-29 12:25:38