+4  A: 

Because the productToEdit is a new product object populated from the form fields and if you don't have fields for the user how would you populate the User entity

For a "workaround", first get the product from the db, edit this with the edited fields in the productToEdit and save to db

TT
I thought this was the case of the object "being new" coming from the view. I don't need to change the user in my scenario. The user is only in the relation to track who created the product. Thanks for this info, I will work around it.
jesperlind
+1  A: 

You can also choose to use a custom ModelBinder that understands your model & persistence strategy to fully load the graph back into memory.

Ben Scheirman
Thanks that sounds promising, I'll look into that. I solved the above by problem attaching the original object in the Edit-function in the service. In this way it passes the same validation I got when I create a Product. (Product must have User)
jesperlind