Results 1 to 4 of 4

Thread: How to Implement .net dependency injection in .NET Application

  1. #1
    Join Date
    Feb 2009
    Posts
    71

    How to Implement .net dependency injection in .NET Application

    What do I need to do if I want to Implement .net dependency injection in .NET Application, I know this will not be the simple process to follow but any information related to this will be helpful for me. I have tried out several ways to do this but end up with confusion.

  2. #2
    Join Date
    Jan 2006
    Posts
    181

    Re: How to Implement .net dependency injection in .NET Application

    The dependency injection pattern, also knows as Inversion of Control, It facilitates the design and implementation of loosely coupled, reusable, and testable objects in your software designs by removing dependencies that often inhibit reuse. One way to mitigate the proliferation of dependencies is by using Dependency Injection (DI), which allows you to inject objects into a class, rather than relying on the class to create the object itself.

  3. #3
    Join Date
    Apr 2008
    Posts
    117

    Re: How to Implement .net dependency injection in .NET Application

    Dependency injection eliminates tight coupling between objects to make both the objects and applications that use them more flexible, reusable, and easier to test. For building a web application in a Test Driven manner while also demonstrating one way to integrate a Dependency Injection (DI) Framework into an ASP.NET MVC app.

  4. #4
    Join Date
    Mar 2008
    Posts
    232

    Re: How to Implement .net dependency injection in .NET Application

    Dependency Injection is an important pattern for creating classes that are easier to unit test in isolation. It is a specific form of inversion of control where the concern being inverted is the process of obtaining the needed dependency. .NET and C# inversion of control container Winter4net - Lightweight C#, .NET dependency injection container, spring framework compliant, ultrafast, compact and scalable, infrastructure for MDD/MDA.

Similar Threads

  1. Understanding SQL Injection Attacks
    By spookshow in forum Guides & Tutorials
    Replies: 3
    Last Post: 01-03-2012, 07:45 PM
  2. How to do DLL injection logic
    By Thenral in forum Software Development
    Replies: 5
    Last Post: 27-06-2011, 10:30 AM
  3. SQL Injection
    By ramsun in forum Software Development
    Replies: 3
    Last Post: 07-12-2009, 09:18 AM
  4. How to Implement Date Deprecated method in an Application
    By shilong in forum Software Development
    Replies: 3
    Last Post: 23-09-2009, 12:30 PM
  5. XML injection in a SOAP request
    By Logan.M in forum Software Development
    Replies: 4
    Last Post: 30-04-2009, 11:30 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,577,022.15438 seconds with 16 queries