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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:47:38+00:00 2026-05-26T05:47:38+00:00

I have 2 classes that implment an interface. The interface is passed into a

  • 0

I have 2 classes that implment an interface.
The interface is passed into a method as a parameter, and subsequently used as the T class in the following NHibernate syntax

Session.Query<T>() 

However, as the interface is implemented by 2 classes, the SQL that gets run by Session.Query is 2 Select statements (Select .. from Boy. and Select .. from Girl).

What I need to know is how to “convert” the IChild parameter into a Class, and then use that Class to populate the Session.Query() call.

The code is below. As you can see I have a workaround, but it’s not pretty and with multiple IChild classes will become a mass of duplicated code.

Thanks!

public interface IChild
{
    DateTime Date { get; }
    Parent Parent { get; set; }
}

public class Boy : IChild
{
    public virtual Parent Parent { get; set; }
    public virtual DateTime GraduationDate { get; set; }
    public virtual DateTime Date { get { return GraduationDate; } set { } }
}

public class Girl : IChild
{
    public virtual Parent Parent { get; set; }
    public virtual DateTime WeddingDate { get; set; }
    public virtual DateTime Date { get { return WeddingDate; } set { } }
}

    public bool Create(IChild entity)
    {            
        //Is there an existing child record for the key details
        IChild child = null;
        if(entity is Boy)
        {
            child = Session.Query<Boy>()
                .Where(x => x.Date == entity.Date)
                .SingleOrDefault();
        }
        else if (entity is Girl)
        {
            child = Session.Query<Girl>()
                .Where(x => x.Date == entity.Date)
                .SingleOrDefault();
        }

    return child.Parent != null;            
    }
  • 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-26T05:47:38+00:00Added an answer on May 26, 2026 at 5:47 am

    Use generics:

    public bool Create<T>(T entity)
    where t : class, IChild
    {            
        //Is there an existing child record for the key details
        IChild child = null;
            child = Session.Query<T>()
                .Where(x => x.Date == entity.Date)
                .SingleOrDefault();
    
    return child.Parent != null;            
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some classes that implement an interface, but also extend the Sprite class:
I have 3 classes: an interface class that defines a few methods 2 classes
I have three classes that implement an interface and I need one Method that
If I have interface IFoo, and have several classes that implement it, what is
If have a set of classes that all implement an interface. interface IMyinterface<T> {
I have multiple classes that all derive from a base class, now some of
I have commands classes that implement ICommand { Execute } interface. Several commands have
I have several classes that implement the same interface. interface IBidManager<E> where E :
I have some classes that all implement a certain interface. I want to store
I have three classes; Stamp, Letter and Parcel that implement an interface IProduct and

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.