Boolean set to true and retrieved via association is consistently false

0
Hi,   We've got an object in a nanoflow with an attribute that gets set to true (IsCompleted). Directly after this, the object is retrieved via association in a list. This list is filtered for objects where IsCompleted = false. Consistently we are seeing the object coming up in the filtered list where IsCompleted = false.   There are no other places where this attribute is changed and within this flow there are no change actions on the object. The Mendix ID is definitely the same.   Is there any other reason the attribute would suddenly be coming back as false?
asked
1 answers
1

Sounds like a "pass by value" vs "pass by reference" type of issue. In other words, the object you are changing is technically a copy of the original object and the original object is retrieved over association.

 

PS. There is also some documentation on this here

answered