Object Activities

Last modified: January 12, 2024

1 Introduction

When working with the Mendix Platform, objects of entities are always being manipulated. This happens implicitly within data containers on a page, or explicitly using activities in microflows and nanoflows.

The activities in this section of the microflow and nanoflow toolbox generally work on single objects, however commit object(s), delete object(s), and retrieve also work on lists of objects. For other activities which work with lists, see List Activities.

The activities described in this document are in the Object Activities section of the Toolbox.

The following are the object activities you can use in your microflow or nanoflow:

  • Cast object – changes the type of object from a generalized object type to the specialized object type
  • Change object – changes the members of an object
  • Commit object(s) – either stores objects of persistable entities in the database or stores objects of non-persistable entities in memory to allow them to be rolled back
  • Create object – creates an object
  • Delete object(s) – activity deletes one or more objects
  • Retrieve – gets one or more objects of an entity
  • Rollback object – undoes uncommitted changes made to an object

2 Read More