I can't believe I can't figure out this basic question but...
How does one manipulate joins in llblgen. I'm using the adapter classes in a db editing web app and I have a few lookup tables to which there are m:n relationships via some join tables.
I am persisting edits to an entity that contains "CollectionVia" members but notice that these collections are simply a read-only reflection of the other table's rows. How do I CHANGE the collection?
The only way I can think of is to delete all the records in the join table itself and then add some again to reflect the edited list. However this seems cumbersome and I'm sure LLBLGen has a nice, built-in and better way of doing it.