class blog
{
list<string> Comment;//评论数组
}
class Comment
list<string> likes;//点赞数组
我只知道怎么追加评论
_posts.Collection.Update(Query.EQ(
"_id"
, postId),
Update.PushWrapped(
"Comments"
, comment).Inc(
"TotalComments"
, 1));