var newCustRole = new RelationCustomerRoleEntity();
newCustRole.Customer = myCustomer;
newCustRole.Role = myRole
after I execute this code Customer:RelationCustomerRoleEntity 1:n
and Role:RelationCustomerRoleEntity 1:n
both have their collections for roles and customers updated
but Customer:Role m:n is intact - it does not see the changes
is this normal? if yes then what is teh puropse of this collection if it is not updated same as 1:n relations ?
I am using LLBGen 2.6 with .NET 3.5