Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 330113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:39:04+00:00 2026-05-12T09:39:04+00:00

How do bind my interface to a concrete class in a different assembly? I

  • 0

How do bind my interface to a concrete class in a different assembly?

I have the following projects in my solution:

Foo.Data

Foo.Domain

In Structure Map I add my two assembly names to the StructureMap.config file and a then using the PluginFamily and Pluggable attributes map my interfaces to my concrete class’.

How can accomplish the same thing with Ninject?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T09:39:04+00:00Added an answer on May 12, 2026 at 9:39 am

    I’ll make a couple of assumptions here.

    1. You have an interface named IBar in your Foo.Domain project and you have a concrete class called BarClass in your Foo.Data project.
    2. You in fact reference Foo.Domain project in your Foo.Data project because BarClass implements IBar.

    The simplest thing to do with Ninject is to create a new class in Foo.Data that derives from Ninject’s StandardModule:

    internal class BarModule : StandardModule {
      public override void Load() {
        Bind<IBar>()
          .To<BarClass>();
      }
    }
    

    This class then establishes the binding for requests of IBar to the concrete class of BarClass. This is your XML equivalent.

    The next step is to create the Ninject kernel (aka a “container”) and provide this module (i.e. this configuration) to it. Where you do this depends greatly on what kind of an application you are creating. In very general terms, you will typically configure the kernel at the logical entry point or “start-up” section of your code. If it were a console or Windows desktop application, this would likely be one of the first things that the main() function does.

    The code would like this:

    var modules = new IModule[] {
                                  new BarModule()
                                };
    
    var kernel = new StandardKernel(modules);
    

    At this point, when you do something like this:

    var barObj = kernel.Get<IBar>()
    

    The variable barObj references an instance of BarClass.

    All said, I could very well not have a full understanding of all the nuances of your application — e.g. assemblies are loaded dynamically, etc. Hope this is of some help anyway.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 187k
  • Answers 187k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If I understood your question correctly, you're half correct. Threads… May 12, 2026 at 5:26 pm
  • Editorial Team
    Editorial Team added an answer Yes: in this case, you are fully protected from SQL… May 12, 2026 at 5:26 pm
  • Editorial Team
    Editorial Team added an answer This problem of string concatenation in SQL Server has several… May 12, 2026 at 5:26 pm

Related Questions

I have started using Ninject 2 (downloaded from Github yesterday including the MVC extension
This could be considered a continuation of this earlier SO question . Ideally, I'd
Thanks to this question I managed to work out how to constrain my generic
I have a grid, and I'm setting the DataSource to a List<IListItem> . What

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.