Hi,
In my test project i have a n-m association between user and group.
I then execute the follwing code expecting both new objects will be saved.
Dim group as New GroupEntity()
group.Name = "group X"
Dim user as UserEntity = group.Users.AddNew()
user.Name = "user Y"
group.Save(true)
After i check it seems that the group is indeed saved into the database but the user isn't. Can you explain to me why this is not working for an n-m association. It does work for a 1 - n association.
I do understand there is an extra table and thus an extra entity when using a n-m relation. But i expected LLBLGen could handle that.
greets,
Daniƫl