Reputation: 573
I am using MongoDB 2, and I want to update multiple documents and upsert a value like processed:true
into the collection. But MongoDB c# api only allows us to either Update Multiple Records or Upsert a single record.
How to solve this problem using the C# api?
Upvotes: 17
Views: 40864
Reputation: 338
A prettier and more robust approach:
public interface IProjection
{
Guid Id { get; }
bool IsDeleted { get; }
}
public async Task UpsertManyAsync<TProjection>(IEnumerable<TProjection> replacements, CancellationToken cancellationToken)
where TProjection : IProjection
{
var requests = replacements.Select(replacement => new ReplaceOneModel<TProjection>(
filter: new ExpressionFilterDefinition<TProjection>(projection => projection.Id == replacement.Id),
replacement: replacement) { IsUpsert = true });
await _context
.GetCollection<TProjection>()
.BulkWriteAsync(
requests: requests,
options: new BulkWriteOptions { IsOrdered = false },
cancellationToken: cancellationToken);
}
Upvotes: 2
Reputation: 1004
Working with [email protected] - try initializeUnorderedBulkOp():
export const InfoFunc = (Infos: Infos[]) => {
const bulk = InfoResult.collection.initializeUnorderedBulkOp();
Infos.forEach((info: Infos) => bulk.find({ "Id": info.Id}).upsert().updateOne(info));
bulk.execute();
}
Upvotes: 1
Reputation: 781
For those using version 2.0 of the MongoDB.Driver, you can make use of the BulkWriteAsync method.
<!-- language: c# -->
// our example list
List<Products> products = GetProductsFromSomewhere();
var collection = YourDatabase.GetCollection<BsonDocument>("products");
// initialise write model to hold list of our upsert tasks
var models = new WriteModel<BsonDocument>[products.Count];
// use ReplaceOneModel with property IsUpsert set to true to upsert whole documents
for (var i = 0; i < products.Count; i++){
var bsonDoc = products[i].ToBsonDocument();
models[i] = new ReplaceOneModel<BsonDocument>(new BsonDocument("aw_product_id", products[i].aw_product_id), bsonDoc) { IsUpsert = true };
};
await collection.BulkWriteAsync(models);
Upvotes: 11
Reputation: 4472
After Mongo 2.6
you can do Bulk Updates/Upserts. Example below does bulk update using c#
driver.
MongoCollection<foo> collection = database.GetCollection<foo>(collectionName);
var bulk = collection.InitializeUnorderedBulkOperation();
foreach (FooDoc fooDoc in fooDocsList)
{
var update = new UpdateDocument { {fooDoc.ToBsonDocument() } };
bulk.Find(Query.EQ("_id", fooDoc.Id)).Upsert().UpdateOne(update);
}
BulkWriteResult bwr = bulk.Execute();
Upvotes: 21
Reputation: 3328
Try first removing all items to be inserted from the collection, and then calling insert:
var search = [];
arrayToInsert.forEach(function(v, k) {
search.push(v.hash); // my unique key is hash. you could use _id or whatever
})
collection.remove({
'hash' : {
$in : search
}
}, function(e, docs) {
collection.insert(arrayToInsert, function(e, docs) {
if (e) {
console.log("data failed to update ", e);
}
else {
console.log("data updated ");
}
});
})
Upvotes: 2
Reputation: 12624
UpdateFlags is an enum in the C# driver that will let you specify both at once. Just like any other flags enum, you do this by bit "or"ing.
var flags = UpdateFlags.Upsert | UpdateFlags.Multi;
You can read the docs on enums here (http://msdn.microsoft.com/en-us/library/cc138362.aspx) paying special attention to the section on Enumeration Types as Bit Flags
Upvotes: 1
Reputation: 1269
You cannot do it in one statement.
You have two options
1) loop over all the objects and do upserts
2) figure out which objects have to get updated and which have to be inserted then do a batch insert and a multi update
Upvotes: 17