Views: 8K
Replies: 1
Archived
|
Pattern Framework - Need to understand - HelpHi
I need some advice. I am aware of Design Patterns (In theory). To learn the practical implementation of Patterns, I had purchased the "Pattern Framework" from this site. Honestly, it is an amazing product that is very well laid out with examples. The problem is that I am not sure of how to study the patterns in this product or where I need to start so that I will be able to understand the underlying concepts used. Any further guidance will be appreciated. William Willy James, May 24, 2010
|
|
Reply 1I believe any experienced .NET developer and .NET architect should be able to relate to this question. At some point in our career we found ourselves in the same situation, wondering where to start and how to move forward
It is through hard work, learning from the masters, reading articles, magazines, blogs, that you slowly but surely develop confidence in building scalable, robust .NET applications. And at the end, it will feel 'natural' and you just know what it takes to design and architect large business applications according to commonly used patterns and best practices. My suggestion to learning to apply patterns and practices in your own work is to do in baby steps. For example: 1) Build the simplest possible app (Web, Windows, WPF, etc), using 1-table database and 1-page screen. 2) Add logging, possibly using the Singleton and Observer pattern (study the Design Pattern Framework). 3) Refactor data access and begin to use DAO and Factory patterns (study the Design Pattern Framework). 4) Implement a clean Service Layer using the Facade pattern (study the Desing Pattern Framework). 5) Move business objects from the database to the UI and back using the Active Record pattern (study the Desing Pattern Framework).. 6) Etc. etc. The key here is starting small and building out the application while refining the architecture by separating it into 3- or n-tiers. Yes, it will take time, but at the end you will know what works and what not. Anyhow, I hope this reply is useful to other .NET developers as well. Dan McMillan, May 28, 2010
|