Hi, here is the general architecture : - the client side interface is an AJAX application that sends an XML stream to the server, the stream may look like : Code Snippet 1 2 - the server receives this stream and has to convert it to business objects in order to manipulate them through business interfaces, - the server persists these business objects to the database. For the moment the business objects are mapped to the database via LINQ by annotating the fields and classes this way : Code Snippet
Read More...