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

The Archive Base Latest Questions

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

I have a relationship between two base classes: public abstract class RecruiterBase<T> { //

  • 0

I have a relationship between two base classes:

public abstract class RecruiterBase<T>
{
  // Properties declare here
  // Constructors declared here

  public abstract IQueryable<T> GetCandidates();
}

public abstract class CandidateBase<T>
{
  // Properties declare here
  // Constructors declared here
}

And their concrete implementations as such:

public class CandidateA : CandidateBase<CandidateA>
{
  // Constructors declared here
}

public class RecruiterA : RecruiterBase<RecruiterA>
{
  // Constructors declared here

  // ----HERE IS WHERE I AM BREAKING DOWN----
  public override IQueryable<CandidateA> GetCandidates()
  {
     return from c in db.Candidates
            where c.RecruiterId == this.RecruiterId
            select new CandidateA
            {
              CandidateId = c.CandidateId,
              CandidateName = c.CandidateName,
              RecruiterId = c.RecruiterId
            };
  }
}

Per MSDN documentation
http://msdn.microsoft.com/en-us/library/ms379564%28VS.80%29.aspx (about half way down)
and a similiar (but not identical) questoin on SO
Specifying the return type of an abstract method from a Base Class according to a Sub Class

I can make use of my concreate implementation for the return type of my overridden method GetCandidates but that is not what I want, I want to make use of the concrete implementation of a different abstract class. This is a parent/child database relationship. Is what I am trying to achieve possible? I currently get a compile time error that my GetCandidates return type does not match.

Thanks

  • 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:36:34+00:00Added an answer on May 12, 2026 at 9:36 am

    It looks like you need to define multiple generic types, with one possibly being constrained to derive from CandidateBase.

    Try something like this:

    public abstract class RecruiterBase<T, C> where C : CandidateBase
    {
      // Properties declare here
      // Constructors declared here
    
      public abstract IQueryable<C> GetCandidates();
    }
    
    public abstract class CandidateBase<T>
    {
      // Properties declare here
      // Constructors declared here
    }
    
    public class CandidateA : CandidateBase<CandidateA>
    {
      // Constructors declared here
    }
    
    public class RecruiterA : RecruiterBase<RecruiterA, CandidateA>
    {
      public override IQueryable<CandidateA> GetCandidates()
      {
         return from c in db.Candidates
                where c.RecruiterId == this.RecruiterId
                select new CandidateA
                {
                  CandidateId = c.CandidateId,
                  CandidateName = c.CandidateName,
                  RecruiterId = c.RecruiterId
                };
      }
    }
    

    Edit Included Chris’s correction

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

Sidebar

Ask A Question

Stats

  • Questions 212k
  • Answers 212k
  • 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 Using UTC ISO 8601 (MSDN datetime formats) Console.WriteLine(DateTime.UtcNow.ToString("s") + "Z");… May 12, 2026 at 10:24 pm
  • Editorial Team
    Editorial Team added an answer Please observe that according to the rfc2396, the colon character… May 12, 2026 at 10:24 pm
  • Editorial Team
    Editorial Team added an answer The only reason I can think of to avoid sizeof(*this)… May 12, 2026 at 10:24 pm

Related Questions

I have a model Task which will HABTM many TaskTargets. When it comes to
I have a one to many relationship between two tables. The many table contains
I have a has_many relationship between two entities, Feeds and Posts. I also have
I have the following two models: School and User, and a HABTM relationship between

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.