Hello i have this message when i save my entity.
During a save action an entity's update action failed. The entity which failed is enclosed.
Now this what i do:
1) I work with a MVC Model
2) Get my Entity by ID from the database.
I use Automapper to fill up my LLBLgen entity to my Model
(http://llblgen.com/TinyForum/Messages.aspx?ThreadID=17504&HighLight=1)
3) Some changes are made in the browser and the user performs a Post to the server.
4) My controler recieves the Model with the changed modeldata.
5) With the ID from my Model i get my Entity from the database.
My Entity is a User object. And my UserEntity contains an AdresEntity.
6) I use my Automapper again to map the fields from my Model to my LLBLgen Entity.
7) When i save my Enity i get this message.
"During a save action an entity's update action failed. The entity which failed is enclosed."
Note: When i Create my mapping i specify only the fields that are needed.
Can you tell me more how i caused that my Entity is enclosed?
...