This post originated from an RSS feed registered with .NET Buzz
by Raymond Lewallen.
Original Post: Presenting at CodeCamp in Wichita, KS on June 3rd.
Feed Title: Raymond Lewallen
Feed URL: /error.htm?aspxerrorpath=/blogs/raymond.lewallen/rss.aspx
Feed Description: Patterns and Practices, OOP, .Net and Sql
The first session will cover building a strongly-typed session wrapper class. Session has always been an issue with me, because for one, its not strongly-typed, and secondly, you have to worry about developers just stuffing things into it and bloating it badly. With a wrapper class, you can use strongly-typed properties and store the entire class itself in session, thus only have a single key-value pair session variable for your users. You also enforce the use of the wrapper so that your session doesnât get out of control. Also, for those rare occassions when you might want to, your session wrapper class can also be serialized. If you are in the Wichita, Kansas area this Saturday, come see how to do this. I will also cover creating wrapper classes for cache and viewstate.
The second session will cover Continious Integration. In this session, we will do an entire walkthough on setting up a continuous integration server. Tools that will be covered are Subversion, NDepend, FxCop, NCover, NUnit (from TestDriven.Net), NAnt and CruiseControl.Net. Come check out the session and walk away with an integration server running on your laptop, including all the tools listed.