Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# MongoDB Driver - How to use UpdateDefinitionBuilder?

I looked up a way to work with mongodb's UpdateDefinitionBuilders but the documentation doesn't really show much...

I need to be able to dynamically build my update queries, so I thought about doing it like this:

var update = Builders<Product>.Update;

update.Set("add A update");

if ()
    update.Set("add X update");
else
    update.Set("add Y update");

update.Set("add B update");

if ()
    update.Set("add Z update");
else
    update.Set("add P update");

Collection.UpdateOneAsync(filter, update, updateOptions);

But it gives a compilation error:

cannot convert from UpdateDefinitionBuilder UpdateDefinition

I looked, but couldn't find, a solution how to works with this UpdateDefinitionBuilders

Can someone please give a code sample of how to use this class?

like image 398
Liran Friedman Avatar asked Mar 18 '18 10:03

Liran Friedman


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

Is C programming hard?

C is more difficult to learn than JavaScript, but it's a valuable skill to have because most programming languages are actually implemented in C. This is because C is a “machine-level” language. So learning it will teach you how a computer works and will actually make learning new languages in the future easier.


1 Answers

If you need to simply update multiple properties you can call Set on update builder and then make subsequent call to Set extension methods. You can either use lambda expression or property name.

var update = Builders<Product>.Update
    .Set(p => Name, "Name value")
    .Set(p => Description, "Description value");

collection.UpdateOneAsync(filter, update, updateOptions);

If you want conditionally update some properties you should create a collection of the updates and then combine them:

var update = Builders<Product>.Update;
var updates = new List<UpdateDefinition<Product>>();

updates.Add(update.Set("propertyA", "add A update"));

if ()
    updates.Add(update.Set("propertyX", "add X update"));
else
    updates.Add(update.Set("propertyY", "add Y update"));

updates.Add(update.Set(p => p.PropertyB, "add B update"));

if ()
    updates.Add(update.Set(p => p.PropertyZ, "add Z update"));
else
    updates.Add(update.Set(p => p.PropertyP, "add P update"));

Collection.UpdateOneAsync(filter, update.Combine(updates), updateOptions);
like image 161
Andrii Litvinov Avatar answered Sep 20 '22 12:09

Andrii Litvinov