Why, in PLINQO, is the following valid;
parent.ManyToManyChildList.Add(child)
context.SubmitChanges();
But the following is not?
parent.ManyTomanyChildList.Remove(child)
context.SumbmitChanges();
Using Remove(), attempts to set the parent FK part of the many-to-many table's PK to null. Is the only way to delete the relationship using PLINQO via this?
context.ManyToManyEntity.DeleteOnSubmit(entity)
context.SubmitChanges();