Hi everyone,
I finally purchased the newer version, 2.0 of LLBLGen, which I love. I have a few questions.
I'm building an asp.net app that currently works kind of like this.
User can log in and create items such as a recipe, he can then edit the recipe which has multiple food items,
so recipe (one to many) on foods
My problem is I store the collections of food and the recipe entity in session, so they can edit the obect to they're blue in the face, until they hit save, I then read in all my entities and collections from the session and save them to the database.
I was wondering if there is a better way to do this, since the only way I've ever built an asp.net app is putting objects into session as I zip from page to page editing the data in session. I don't think this will be a problem until I get about 500 users on the server editing their recipes, then memory will be eaten alive. Can someone please help a fellow coder out? Thanks!