c# Programming Glossary: tightly
Refactoring code to avoid anti-pattern http://stackoverflow.com/questions/11224170/refactoring-code-to-avoid-anti-pattern an email and send it. As a result your Domain object is tightly coupled to too many things making it rigid and fragile. It could..
Loading Subrecords in the Repository Pattern http://stackoverflow.com/questions/1223194/loading-subrecords-in-the-repository-pattern you want to perform on them. Users and Roles are usually tightly related and generally your application would be performing operations..
C# - Location of Using Statements http://stackoverflow.com/questions/1342830/c-sharp-location-of-using-statements at the top of the file. This will scope the namespaces tightly and will also help to avoid the kind of behavior described above...
Is this Repository pattern efficient with LINQ-to-SQL? http://stackoverflow.com/questions/1669607/is-this-repository-pattern-efficient-with-linq-to-sql Johannes' desire to control the execution of the SQL more tightly and with the implementation of what i sometimes call 'lazy anchor..
ASP.Net MVC RouteData and arrays http://stackoverflow.com/questions/1752721/asp-net-mvc-routedata-and-arrays bug I'm actually using a dedicated ViewPage T so I have a tightly coupled type aware Model. The ActionLink actually looks like..
What's the naming convention for classes in the DataAccess Project? http://stackoverflow.com/questions/1955875/whats-the-naming-convention-for-classes-in-the-dataaccess-project you're trying to prevent against naming conflicts between tightly coupled assemblies . However it's usually recommended to have.. concrete class name directly anymore. Otherwise by using tightly coupled assemblies you might as well combine them into one assembly..
'CompanyName.Foo' is a 'namespace' but is used like a 'type' http://stackoverflow.com/questions/2046012/companyname-foo-is-a-namespace-but-is-used-like-a-type sum up being inside something of the right name binds more tightly than using something of the right name from the outside . When..
Web Reference vs. Service Reference http://stackoverflow.com/questions/2158106/web-reference-vs-service-reference in a Web project. But I don't want my service reference tightly coupled to my web project. So that's why I created the C# Project...
passing DB Connection object to methods http://stackoverflow.com/questions/251603/passing-db-connection-object-to-methods share improve this question Personally I like to use tightly scoped connections open them late use them and close them in..
Open-source parser code for Mediawiki markup http://stackoverflow.com/questions/324758/open-source-parser-code-for-mediawiki-markup Mediawiki parser based on Mediawiki's own parser but less tightly integrated with Mediawiki itself. So does anyone know of any..
Exporting Excel to C# http://stackoverflow.com/questions/3449541/exporting-excel-to-c-sharp code to C#. Granted this assumes that the VBA code is not tightly coupled to individual Excel objects worksheets rows cells ranges.. not sure how well these solutions will work if you have tightly coupled code but if the workbook is huge it might be something..
Opening a “known file type” into running instance of custom app - .NET http://stackoverflow.com/questions/424368/opening-a-known-file-type-into-running-instance-of-custom-app-net to true This should all be refactored to make it less tightly coupled obviously. class MyWindowsApplicationBase WindowsFormsApplicationBase.. like this This should all be refactored to make it less tightly coupled obviously. public static void Main string args Process..
Calling C# code from Java? http://stackoverflow.com/questions/50398/calling-c-sharp-code-from-java encryption stuff in there so I would rather keep it tightly integrated if possible. Edit It's going to be on a server based..
Injecting dependencies into ASP.NET MVC 3 action filters. What's wrong with this approach? http://stackoverflow.com/questions/7192543/injecting-dependencies-into-asp-net-mvc-3-action-filters-whats-wrong-with-this the container and inject the service. I do agree that does tightly couple the container with the ActionFilter. My question though..
Interfacing octave with C# http://stackoverflow.com/questions/8026951/interfacing-octave-with-c-sharp do bundle Octave with your application. If you want to tightly mix c# and math code this will be a quite complicated but if..
Using Inner classes in C# http://stackoverflow.com/questions/804453/using-inner-classes-in-c-sharp are private and are units of business logic or otherwise tightly coupled to their parent class in a manner in which they are..
OData with ServiceStack? http://stackoverflow.com/questions/9577938/odata-with-servicestack exposing internal implementation details of your service tightly coupling your implicit service contract to the underlying RDBMS..
|