Skip to content

Delete methods

Simon Mourier edited this page Feb 19, 2020 · 1 revision

Delete methods are very similar to Load Methods, but instead of returning entities, they delete entities, and return the number of rows deleted in the declaring entity.

More information such as available operators, examples or advanced methods, can be found in the Architect Guide, and more especially in the Methods chapter, in the Delete article.

Delete definition

The general syntax is:

delete([argumentType1] argument1, [argumentType2] argument2, ... , [argumentTypeN] argumentN) [From <source>] [<where> | [raw]
  • <source> can be an Entity or a View name

  • <where> is a where clause

see load methods for a description of raw, arguments, source, and where clause.

Clone this wiki locally