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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:16:12+00:00 2026-05-28T13:16:12+00:00

Here I have the mapping for the parent and child-class: public class Parent {

  • 0

Here I have the mapping for the parent and child-class:

public class Parent
{
    public virtual int ParentId { get; set; }
    public virtual string ParentName{ get; set; }
}

public class Child : Parent
{
    public virtual string ChildName{ get; set; }
}

And the mappings:

public class ParentMap: ClassMap<Parent>
{
    public ParentMap()
    {
        Id(x => x.ParentId ).GeneratedBy.Identity();
        Map(x => x.ParentName);
    }
}

public class ChildMap : SubclassMap<Child>
{
    public ChildMap ()
    {
        Map(x => x.ChildName);
    }
}

Now I have the problem that the Id-Column has another name than the convention expects. The convention would like to have Parent_id for the join, but I would like to define a custom name.
How can I define the custom name?

Thx for any tipps

P.s.: Since this case is an exception, I don’t want to create an own convention.

  • 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-28T13:16:13+00:00Added an answer on May 28, 2026 at 1:16 pm

    Ah, figured it out:

    public class ChildMap : SubclassMap<Child>
    {
        public ChildMap ()
        {
            KeyColumn("ParentId")
            Map(x => x.ChildName);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here I have declared another virtual function in Derived class. #include <iostream> using namespace
I have this fluent mapping: sealed class WorkPostClassMap : ClassMap<WorkPost> { public WorkPostClassMap() {
I have parent child relationship between two entities(Parent and Child). My Parent mapping is
If I have the following domain object: public class Customer { public virtual Guid
I'm way out of my league here... I have a mapping table (table1) to
I have read here http://lostechies.com/jimmybogard/2009/09/18/the-case-for-two-way-mapping-in-automapper/ about how you probably shouldn't be trying to un-flatten
Here you have my switch from my Class Essaie with the Main() : switch(c)
I have a parent to child relationship. My problem is, when I access the
i have too problems 1: debbuging restTemplate, 2: mapping xml to pojo. here is
I have a table Parent and a table Child. Child contains a foreign-key to

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.