This is my first post on stack overflow, and I got here because I'm reading a book by Jon Skeet (you probably already know which one I'm talking about) - C# in depth, really nice book, and he said that he was active on this site, and since I'm really into programming I decided to check it out as well ;).
Anyways, I'm a young and interested developer (last year of "university" - I don't really know how to say it in English, so I hope this is right) and I'm currently running an internship with focuss on C#.
As the title says, I'm interested in articles which have some concrete information about stateless and stateful design in programming. I'm interested because I want to learn more about it, but I really can't find any good articles about it. I've read dozens of articles on the web which vaguely discuss the subject, or they're talking about web servers and sessions - which are also 'bout stateful vs stateless, but I'm interested in stateless vs stateful design of attributes in coding. Example: I've heard that BL-classes are stateless by design, entity classes (or atleast that's what I call them - like Person(id, name, ..)) are stateful, etc.
I think it's important to know, because I believe if I can understand it, I can write better code (e.g. granularity in mind).
Anyways, really short, here's what I know 'bout stateful vs stateless:
Stateful (like WinForms): Stores the data for further use, but limits the scalability of an application, because it's limited by CPU or memory limits
Stateless (Like ASP.NET - although ASP tries to be stateful with ViewStates): After actions are completed, the data gets transfered, and the instance gets handed back to the thread pool (Amorphous).
As you can see, it's pretty vague and limited information (and quite focussed on server interaction), so I'd be really grateful if you could provide me with some more tasty bits of information :)
Anyways, thanks for reading all of this, and I wish you a good day
Greetings
PS. sorry for any type of typos, I'm not English by design lol ;)