I would like to use the UpdateByQuery() methode
If i understood well i need to give a query and a select.
for example i would like to change the name property to "welcome" in my proj class
I start to write my methode but i don't know what to do after that?
client.UpdateByQuery<proj>(q => q.Query(rq => rq.Term(f => f.idProjet, projetEntity.IdProjet)));
I don't see Update fluent methode in the intellisense helper
Could you help me please?