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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T09:11:30+00:00 2026-05-13T09:11:30+00:00

I have this fluent mapping: sealed class WorkPostClassMap : ClassMap<WorkPost> { public WorkPostClassMap() {

  • 0

I have this fluent mapping:

sealed class WorkPostClassMap : ClassMap<WorkPost>
{
    public WorkPostClassMap()
    {
        Not.LazyLoad();

        Id(post => post.Id).GeneratedBy.Identity().UnsavedValue(0);
        Map(post => post.WorkDone);
        References(post => post.Item).Column("workItemId").Not.Nullable();
        References(Reveal.Property<WorkPost, WorkPostSheet>("Owner"), "sheetId").Not.Nullable();
    }

parent class:

sealed class WorkPostSheetClassMap : ClassMap<WorkPostSheet>
{
    public WorkPostSheetClassMap()
    {
        Id(sheet => sheet.Id).GeneratedBy.Identity().UnsavedValue(0);
        Component(sheet => sheet.Period, period =>
                                             {
                                                 period.Map(p => p.From, "PeriodFrom");
                                                 period.Map(p => p.To, "PeriodTo");
                                             });
        References(sheet => sheet.Owner, "userId").Not.Nullable();
        HasMany(sheet => sheet.WorkPosts).KeyColumn("sheetId").AsList();
    }

WorkItem class:

sealed class WorkItemClassMap : ClassMap<WorkItem>
{
    public WorkItemClassMap()
    {
        Not.LazyLoad();

        Id(wi => wi.Id).GeneratedBy.Assigned();
        Map(wi => wi.Description).Length(500);
        Version(wi => wi.LastChanged).UnsavedValue(new DateTime().ToString());
    }
}

And when a collection of WorkPosts are lazy loaded from the owning work post sheet I get the following select statement:

SELECT  workposts0_.sheetId as sheetId2_, 
        workposts0_.Id as Id2_, 
        workposts0_.idx as idx2_, 
        workposts0_.Id as Id2_1_, 
        workposts0_.WorkDone as WorkDone2_1_, 
        workposts0_.workItemId as workItemId2_1_, 
        workposts0_.sheetId as sheetId2_1_, 
        workitem1_.Id as Id1_0_, 
        workitem1_.LastChanged as LastChan2_1_0_, 
        workitem1_.Description as Descript3_1_0_ 

FROM    "WorkPost" workposts0_ 
        inner join "WorkItem" workitem1_ on workposts0_.workItemId=workitem1_.Id 

WHERE   workposts0_.sheetId=@p0;@p0 = 1

No, there are a couple of things here which doesn’t make sence to me:

  1. The workpost “Id” property occurs twice in the select statement
  2. There is a select refering to a column named “idx” but that column is not a part of any fluent mapping.

Anyone who can help shed some light on 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-05-13T09:11:30+00:00Added an answer on May 13, 2026 at 9:11 am

    The idx column is in the select list because you have mapped Sheet.WorkPosts as an ordered list. The idx column is required to set the item order in the list. I’m not sure why the id property is in the select statement twice.

    By the way, an unsaved value of 0 is the default for identity fields, so you can remove .UnsavedValue(0) if you want.

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

Sidebar

Ask A Question

Stats

  • Questions 508k
  • Answers 508k
  • 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 You're not getting results because you're not executing the code… May 16, 2026 at 4:23 pm
  • Editorial Team
    Editorial Team added an answer The meaning of "can" (in "...CPU can access...") in this… May 16, 2026 at 4:23 pm
  • Editorial Team
    Editorial Team added an answer If your simply asking how to get the first line… May 16, 2026 at 4:23 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I have the following classes and fluent mappings: public class A { public virtual
Let's say I have something similar to this : public class DataType { //For
How do I specify with fluent NHibernate mapping for a table that doesn't have
I have a library with a class called Recipient which has it's own fluent
I have a property on my domain object which is exposed as this: public
I am learning Fluent NHibernate and this issue arose from that project. I have
given the following class definition: public class Order { public IProduct Product {get;set;} }
I'm using NHibernate and Fluent NHibernate to create a mapping file for a domain
I am changing my application to use Fluent NHibernate. I have created my Fluent
We have been having this issue pop up sporadically, but now I can reproduce

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.