The property 'text' is part of the object's key information and cannot be modified
问题 So I have a table in the database, with a column that is simply an nvarchar(800). When I try to do: try { UserTable = (from x in entities.userTable where x.uID == uID select x).Single(); UserTable.DateCreated = DateTime.Now; UserTable.text= newText; Update(UserTable); } I get the exception in catch: "The property 'text' is part of the object's key information and cannot be modified." When I look into the table, I don't see anything under "key" or "index". So it's not a key, I don't understand