Hello,
Three Tables:
A ==> Object aEntity
B
C
Over Table B there is a n:m Relation between A and C
I delete rows in B over UnitOfWork object. (UnitOfWork.AddForDelete(B,true).
After deleteion the collection (A.C_CollectionViaB) is not up to date. So I ReFetch the collection (A.C_CollectionViaB). But the collection is always not up to date.
It is first up to date if I Reload Entity A, Why?
Regards