How to execute delete and update operations in RavenDB

Viewed 80

Just a simple, question reading through the official RavenDB documentation , I understand you are able to execute these operations with the client API functions but you can't with RQL , or is anyway to do it with RQL.

1 Answers

What you are looking for is 'Patching'
Use RQL with the update command
Inside the update you can delete (use del) or modify
See these examples.

Related