MongoDb upsert。仅在插入项目时设置字段

时间:2018-10-05 15:41:04

标签: c# mongodb

我有以下代码

Collection.ReplaceOneAsync(
    p => p.Id == item.Id,
    item,
    new UpdateOptions { IsUpsert = true });

它将项目插入到集合中或对其进行更新(如果已存在)。但是我需要添加到项目字段CreationDate,并且仅当插入项目时才应设置该字段,而不是对其进行更新。可能吗?

0 个答案:

没有答案