Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is related to question posted here. My Core project has following .

public interface IRepository<T> : IDisposable  
{  
    IQueryable<T> All { get; }  
    IQueryable<T> AllIncluding(params Expression<Func<T, object>>[] includeProperties);  
    TEntity Find(int id);  
    void InsertOrUpdate(T entity);  
    void Delete(int id);  
    void Save();  
}  

public class Customer  
{  
    public int Id { get; set; }  
    public string FirstName { get; set; }  
    public string LastName { get; set; }   
} 

DAL has CustomerContext and CustomerRepository. This project depends upon Entity Framework.

public class CustomerContext : DbContext
{
    public DbSet<Customer> Customers { get; set; }
}

public class CustomerRepository : IRepository<Customer>
{

}

Next comes my BAL. This is a class library project. I need to perform some actions on customer repository but I want to do it without adding dependency on DAL directly. I am trying to do via DI using ninject. I am setting up binding between IRepository and CustomerRepository as follows.

var Kernel = new StandardKernel();  
Kernel.Bind<IRepository>().To<CustomerRepository>();  
  1. Let' say I have a UI application that will call some API from BAL. Where exactly above code for binding IRepository to CustomerRepository should be placed? Is there any way of doing this binding via App.config?

  2. As you can see if I put this somewhere in BAL, then I will have to add a reference to DAL project because I am using CustomerRepository which is defined in DAL layer.

share|improve this question

2 Answers

up vote 3 down vote accepted

First of all: Do not use generic repositories which expose IQueryable<TEntity>.

  1. Have you tried to mock them when writing unit tests?
  2. They are what we call leaky abstractions.

Your questions:

Let' say I have a UI application that will call some API from BAL. Where exactly above code for binding IRepository to CustomerRepository should be placed? Is there any way of doing this binding via App.config?

Why can't you add a dependency to your DAL from your UI project? It will also simplify the installation since the DAL will automatically be included when you publish the project and/or create a setup package.

As you can see if I put this somewhere in BAL, then I will have to add a reference to DAL project because I am using CustomerRepository which is defined in DAL layer.

Don't create a reference or configuration in the BAL. It's the UI project which is the root. So any configuration should be added into it.

I usually create a composition root in every project and then invoke the root in every assembly from my startup project. That means that the startup project only has to know which projects we got, but not what they contain.

share|improve this answer
Appreciate your response. Adding a reference of DAL into UI project. Isn’t it a code-smell and breaks separation of code pattern? Am I missing something understanding it? – palm snow Sep 24 '12 at 17:04
You are not using the code. It's just a project reference to simplify things. – jgauffin Sep 24 '12 at 17:51

You never set up your container in a low level layer. Rather, you have a composition root somewhere up the hierarchy. In case of a desktop application, the Main is a good candidate. In a web application it would be the Global.asax's Application_Start.

share|improve this answer
Thanks Wiktor but i am a bit confused as how these project dependencies are going to work out with separation of concern in mind. Let's say I have a UI Client project that uses BAL layer. In that case UIClient project will have dependency (using project reference) to Core, DAL layer and ninject ( as it need to know about Customer object and CustomerRepository) whereas BAL will not have any project reference on DAL and just on the Core and ninject? – palm snow Sep 23 '12 at 19:25
Yes, it seems that this is possible in the way you describe it. – Wiktor Zychla Sep 23 '12 at 19:45
hmm. But I am not sure if its a good thing to have a reference of DAL into UIClient. I am hoping that just a refenence of BAL into UIClient should be good enough but I don't know how to setup project structure because UIClient need to know about CustomerRepository which currently in DAL layer (because it needs CustomerContext). – palm snow Sep 23 '12 at 20:13
There should be some start somewhere which aggregates everything in a sense that it knows all dependencies. If the UIClient is your start, then could contain references to other projects. An alternative would be to have your composition root in a separate assembly, referenced from the UIClient. – Wiktor Zychla Sep 23 '12 at 20:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.