Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.88 KB

File metadata and controls

33 lines (24 loc) · 1.88 KB
title url weight tags
Object Activities
/refguide/object-activities/
10
studio pro
microflow
object

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

{{% alert color="info" %}} Any changes made to an object are visible in all widgets. This is because changes are stored globally in the client. {{% /alert %}}

2 Read More