Search Results

0
votes

Where to move the business logic when moving it out of the database

This will depend upon the object model that you've created and how you've let your caller decide which Factory will be the new Factory to process the PurchaseOrder. For example, if you gi …
0
votes

What are the Dangers of using a Singleton in a multithreaded application

There is some debate with respect to the need to make the first check for null use Thread.VolatileRead() if you use the double checked locking pattern and want it to work on all memory models. An …