I am trying to attach a LINQ entity to the data context after I receive it from a form POST. However, all I get is the following exception:
An entity can onl
I solved by setting UpdateCheck=Never to my property in .Dbml file and context.entity.Attach(entity, true);
UpdateCheck=Never
context.entity.Attach(entity, true);