Linq to Sql - Many for Many - CRUD

I am using Linq for sql as my OR-mapper. My problem is that I cannot think of a way to perform crud operations in a many-to-many context.

The read part is not a problem. I just create a partial class and set a property that reads all the records using my relationship table.

How can I add the Create, Update, and Delete functions?

thanks

+5
source share
1 answer

Unfortunately, LINQ to SQL does not handle many, many relationships gracefully.

, , . , " " .

, . ( IBindingList ..), :

" " Linq to SQL: II ( /)

:

+5

All Articles