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 7933733
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:25:03+00:00 2026-06-03T21:25:03+00:00

I have my repositories setup like below. interface IRepository<T> where T : DataRow {

  • 0

I have my repositories setup like below.

interface IRepository<T> where T : DataRow
{
  T Get(int key);
}

interface ICartonRepository : IRepository<CartonDataRow>
{

}

class CartonRepository : ICartonRepository
{
  public CartonDataRow Get(int key)
  {

  }
}

I also have a PackRepository which is defined in the same way as the CartonRepository. What I would like to do is something like the following.

IRepository<DataRow> repository;
switch (rowType)
{
  case Carton:
    repository = new CartonRepository();
    break;
  case Pack:
    repository = new PackRepository();
    break;
}

Is there a way I can achieve this?

  • 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-06-03T21:25:05+00:00Added an answer on June 3, 2026 at 9:25 pm

    For C# 3.5 you will have to add the following:

    public interface IRepository {
       DataRow Get(int key);
    }
    
    public abstract class Repository<T> : IRepository<T>, IRepository
        where T : DataRow
    {
       public abstract T Get(int key);
    
       DataRow IRepository.Get(int key) {
           return this.Get(key);
       }
    }
    

    Then change CartonRepository to class CartonRepository : Repository<CartonDataRow> (I do not think you need ICartonRepository, but you can use it if you want). Then

    IRepository repository;
    switch (rowType)
    {
      case Carton:
        repository = new CartonRepository();
        break;
      case Pack:
        repository = new PackRepository();
        break;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my mvc3 application, I have things setup like: 1. repositories for each entity
We have a GitHub organization setup with private repositories. We would like to give
I have nexus 1.5.0 setup to proxy springsource repositories but it's not working. The
Like many people, I have several SVN repositories that contains several projects. I've decided
I have an MVC solution setup like this, with three 'projects'. Web (MVC Project,
I have an interface ( IRepository<T> ) that is currently being extended for each
I have a standard gitosis setup that I would like to backup using rsync.
I have a git repository setup at C:\xampp\htdocs\wordpress . I'd like to clone it
We have our Data Access Layer setup to use repositories, services, and specifications (for
We have repositories which have a Save method. They also throw a Created event

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.