Dear Otis,
I guess my question wasn't well-formulated.
The BL facade has two methods:
Function GetData() As Entitycollection
Sub GetData(col As EntityCollection)
In my form I have my designtime-defined EntityCollection, DataCol. If I use the Sub (handing the locally defined member as a paramter) the EntityCollection is filled and the DataBindig works as designed. If I use the function (receiving an EntityCollection with the same EntityFactory and the same data), and then set the locally defined member to the one received from the function-call, the DataBinding doesn't work (or at least I would have to wire each Control on the form).
My question is: is it possible to call the function, receive the data, and then hand this data over to the locally defined EntityCollection?
Best regards