I'm using breeze + EF as part of my asp.net mvc 4 project spa.
When creating an entity with primary key which is set by the user (not defined as identity or computed), the user must set this key in the client.
After editing existing entity by changing the value of that entity key in the client and saving changes: the request is transmitted successfully, the server breeze controller executes savebundle and everything seems to behave as expacted. Yet the change is not saved to the database (using sql profiles shows that no sql statement is being called). Performing the same process while changing property value that is not part of the key works as expected. Does anyone had such an issue?
Thanks,
Eran