c# Programming Glossary: coupled
Refactoring code to avoid anti-pattern http://stackoverflow.com/questions/11224170/refactoring-code-to-avoid-anti-pattern and send it. As a result your Domain object is tightly coupled to too many things making it rigid and fragile. It could change..
Moq: unit testing a method relying on HttpContext http://stackoverflow.com/questions/1214178/moq-unit-testing-a-method-relying-on-httpcontext mockContext.Object and your application is much less coupled to the static WebForms HttpContext. If you're going to be doing..
When to use properties instead of functions http://stackoverflow.com/questions/1374273/when-to-use-properties-instead-of-functions array so that the user cannot change internal state. This coupled with the fact that a user can easily assume it is an indexed..
Design - Where should objects be registered when using Windsor http://stackoverflow.com/questions/1410719/design-where-should-objects-be-registered-when-using-windsor ensures maximum modularity and that modules are as loosely coupled as possible. In practice this means that you should configure..
Recommended ServiceStack API Structure http://stackoverflow.com/questions/15231537/recommended-servicestack-api-structure approach it. ServiceStack service implementations are de coupled from their custom routes One thing to keep in mind is how you.. and design your services in ServiceStack are fairly de coupled in how you expose them since you can expose your services under..
Should we use “workstation” garbage collection or “server” garbage collection? http://stackoverflow.com/questions/1707240/should-we-use-workstation-garbage-collection-or-server-garbage-collection you have a single application whose threads are relatively coupled you're fitting better into the model expected by the first mode..
Why does C# not provide the C++ style 'friend' keyword? http://stackoverflow.com/questions/203616/why-does-c-sharp-not-provide-the-c-style-friend-keyword
Creating an instance using Ninject with additional parameters in the constructor http://stackoverflow.com/questions/2227548/creating-an-instance-using-ninject-with-additional-parameters-in-the-constructor the container and asking for stuff otherwise your code is coupled to a the specific container which the CSL can minimise b the..
Can I find out the return value before returning while debugging in Visual Studio http://stackoverflow.com/questions/268048/can-i-find-out-the-return-value-before-returning-while-debugging-in-visual-studi to inspect the returned value The go function is directly coupled to a datagrid in an aspx page. The only way to inspect the returned..
What is the best way to deal with DBNull's http://stackoverflow.com/questions/26809/what-is-the-best-way-to-deal-with-dbnulls on its own is never a good enough reason to use as but coupled with the reason above it's useful. I'd recommend doing something..
Getters and Setters are bad OO design? http://stackoverflow.com/questions/2747721/getters-and-setters-are-bad-oo-design automatically whether that getter setter is needed or not coupled with making members public which should not be public because..
Is C# really slower than say C++? http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c user is waiting while the compiler runs. Especially when coupled with the first problem possibility of deriving little or no..
Creating an MVVM friendly dialog strategy http://stackoverflow.com/questions/6595312/creating-an-mvvm-friendly-dialog-strategy you are using try to keep the View and the ViewModel de coupled by using an IoC inversion of control pattern i.e. define an..
Is there an alternative to bastard injection? (AKA poor man's injection via default constructor) http://stackoverflow.com/questions/6733667/is-there-an-alternative-to-bastard-injection-aka-poor-mans-injection-via-defa this question relates to how to expose a loosely coupled API with some appropriate defaults. In this case you may have..
ADO.Net Entity Framework An entity object cannot be referenced by multiple instances of IEntityChangeTracker http://stackoverflow.com/questions/694625/ado-net-entity-framework-an-entity-object-cannot-be-referenced-by-multiple-insta _entities.SaveChanges return contact I'm using a loosely coupled MVC design with Services and Repositories. I've read a lot of..
Using Inner classes in C# http://stackoverflow.com/questions/804453/using-inner-classes-in-c-sharp and are units of business logic or otherwise tightly coupled to their parent class in a manner in which they are fundamentally.. often you may find yourself initially building a strongly coupled component just because it's first or primary purpose makes it.. they should be more or less well designed and loosely coupled components. Even if they are private and invisible to the outside..
OData with ServiceStack? http://stackoverflow.com/questions/9577938/odata-with-servicestack 20Rating 20eq 20'PG 13' This service is effectively now coupled to a Table View called 'Titles' with a column called 'Type'...
|