标签: c# mongodb
我有以下代码
Collection.ReplaceOneAsync( p => p.Id == item.Id, item, new UpdateOptions { IsUpsert = true });
它将项目插入到集合中或对其进行更新(如果已存在)。但是我需要添加到项目字段CreationDate,并且仅当插入项目时才应设置该字段,而不是对其进行更新。可能吗?
CreationDate