How to retrieve a list of non-Persistable entities in Microflow?

0
It seems the retrieve activity only retrieves Persistable entities. How to retrieve a list of non-Persistable entities in Microflow? The reason why I’m doing so: I’m using the Import Module. The Import template has been configured to store data into an non-Persistable Table. Why choosing non-Persistable Table, because I think it is more faster than the Persistable Table. After import, I want to retrieve objects from the non-Persistable table, and update the real database. But found the non-Persistable objects cannot be retrieved.  
asked
1 answers
1

Hey

As non-persistable entities only exist in memory and no data from it is stored in the database
you can retrieve them only through associations.
So by using the retrieve activity and selecting by association.

This non persistable entity might have to be associated in some way to return a list of associated objects

answered