Microflow Populate Data-list from Non-Persistent Entity

0
I want to be able to return results from a non-persistent entity into a datalist view.  You can’t choose a non-persistent entity as a datasource, so I decided to create a microflow to output a list of data points, where the microflow would go retrieve objects from the non-persistent entity and return a list as the output, however when retrieving objects I also cannot grab values from a non-persistent entity.  How would I go about doing this? 
asked
1 answers
0

iin the MF you create an object of the type of your non persistent. You fill it with the data you want. An you return it as the return type  object (red dot, end event)

or you have to associate the non persistent to a persistent entity and use the retrieve over Association, and return it als the return type.

answered