I was receiving the following error:
Unable to update the EntitySet 'Player' because it has a DefiningQuery and no element exists in the element to support the current operation.
Turns out that Entity Framework treats tables that are created without an explicit primary key, as views, and therefore does not generate an update function. As usual, a StackOverFlow post quickly put my mind on track.