Remove list duplicates in a nanoflow

0
To remove duplicates in a list in a microflow, I use Union or Intersect of the list on itself, and this works fine However, doing the same thing in a nanoflow doesn't work - the list remains unchanged Why is this?
asked
1 answers
1

Hi Colin,

     When you perform a Union or Intersect in a nanoflow, it compares objects by their memory references rather than GUIDs. As a result, even if two objects represent the same entity in the database, they might not be considered Equal on the client-side, and the operation doesn't remove duplicates.

answered