I\'m working on a CRUD ASP.NET WebForms web application consisting of a couple of pages in which the user fills in data. My client doesn\'t want to store the entities in the
You can store all objects used in the client application in the Session and then when the user clicks finish you send those objects to a service/method where you can convert them to entities and then submit them to the database.