Hi
I have the following situation:
role.Permissions.Add(permission);
objectContext.SaveChanges();
When I now take a look in the relations table Roles_Permissions the newly added permission to the role is not present. It only saves the new relation when I dispose the object context. Am I doing something wrong or does a call to SaveChanges doesn't save changes on relationship sets?