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

  • SEARCH
  • Home
  • 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 7404701
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:17:36+00:00 2026-05-29T05:17:36+00:00

I am currently developing an MVC 3 application with EF and the Repository pattern.

  • 0

I am currently developing an MVC 3 application with EF and the Repository pattern. I created a generic interface as follows:

interface IGenericRepository<T>
{
}

And an abstract class as follows:

abstract class GenericRepository<TContext ,T> : IGenericRepository<T>
    where TContext : DbContext, new()
{
}

After that my repo inherits both of them like this:

interface ICardRepository : IGenericRepository<Card>
{
}

and

class CardRepository : GenericRepository<EfContext, Card>, 
    ICardRepository
{
}

With Unity I register the interface and the class like this:

container.RegisterType<ICardRepository, CardRepository>();

Now the question is: can I use IGenericRepository instead of ICardRepository?
Like this:

container.RegisterType<IGenericRepository<Card>, CardRepository>();

In theory I can, but as I still do not get how this pattern works I am not quite sure if I am not breaking or missing something.

  • 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-29T05:17:37+00:00Added an answer on May 29, 2026 at 5:17 am

    One possible issue is now you will have to resolve IGenericRepository<Card>, instead of ICardRepository.

    This will not work:

    var cardRepository = container.Resolve<ICardRepository>();
    

    Instead you will have to do this:

    var cardRepository = container.Resolve<IGenericRepository<Card>>();
    

    This also means that if you are doing something like constructor injection, you can’t use:

    public class SomethingDependentOnCardRepository
    {
        // The parameter type should be IGenericRepository<Card> instead,
        // if you are using Unity to resolve this dependency.
        public SomethingDependentOnCardRepository(ICardRepository cardRepository)
        {
           // code
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently developing an MVC application in ASP.net. I am using AJAX.ActionLink to
We are developing an ASP.NET MVC Application that currently uses it's own database ApplicationData
I'm currently developing an ASP.NET MVC application with a ton of PK-FK relationships in
We are currently developing a web application in ASP.NET MVC which would really benefit
I'm currently developing an asp.net mvc 2 application which uses the default SqlMembershipProvider for
We are currently developing an application based on NHibernate and ASP.NET MVC and a
Im currently developing a MVC application Framework and I have come for some advise
Hello i am currently developing a ASP.NET MVC 3 application that uses the new
I am currently developing a php application using MVC techniques. I started it without
currently I'm developing on an older ASP.NET MVC 1 Application, to add theme support.

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.