the situation is as following: while adding an object which has 2 level of details into the database using EF the process works fine on SaveChanges() for the first time since all data is loaded from the database.
I tried to store the lists in Sessions and even 开发者_运维知识库ViewState (to avoid any serialization problems) but when i create a new object and add the details to it , the insert process failed at the web level due a serialization problem
Note : the call to the business and data-layer is routed through WCF service
精彩评论