I\'ve been using Database First, EF 4.1
I am getting \"The entity type List`1 is not part of the model for the current context.\" error when trying to update a recor
I ended up here despite using code-first EF. The answer to the problem for me was simply not to try to pass a list of entities to the insert method, but insert them one at a time instead:
entityList.ForEach(context.Insert);