Using C#, asp.net 3.5, SqlServer 2005, Trying to incorporate some inversion of control together with 3-tier architecture into my current assignment.
This is a slightly different question to this one ([Accessing a method from a templated derived class without using virtual functions in c++?) which I asked recently.
how to create singleton classes for multiple uses and开发者_如何转开发 how to connect to jsp with that singleton classI\'m not sure why yould want to connect to a singleton from you JSP directly. If y
I\'m thinking of writing a class to store away some helpful methods that relate to my Model, sequences of my Model and my Repository. I don\'t think any of those are responsible for calculating anythi
I often find myself reading books and articles that outline patterns, best practices, and how to write \"clean code.\" However, some of these concepts just seem to be over engineered and at times obsc
I\'m building a webapp in MySQL/PHP/Javascript. In PHP, I\'ve got all the classes from the domain od the problem which persist in the database.
Background tasks being stu开发者_开发百科ff that involves network I/O, disk I/O, or other long-running tasks that may or may not take place over a network.It will often intermix with code that updates
Too开发者_StackOverflow社区 often I find myself building selectors with string manipulation (split, search, replace, concat, +, join).
My current architecture is based around my entities being simple containers for data with little or no logic within them. Any business decisions are made by Service classes which take entities as argu
The Model-View-ViewModel is very popular with WPF and Silverlight.I\'ve been using this for my most recent projects, and am a very large fan.