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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:21:55+00:00 2026-05-14T04:21:55+00:00

I have two entities types: RunContainer parent entity type Run child entity type Run

  • 0

I have two entities types:

  • RunContainer parent entity type
  • Run child entity type

Run has a property Status, which is of type RunStatus, like so:

public enum RunStatus
{
  Created,
  Starting,
  // ...
}
public class Run
{
  public int ContainerId { get; private set; }
  // ...
  public RunStatus Status { get; private set; }
}

RunContainer has a calculated property ActiveRunCount, like so:

public class RunContainer
{
  public int Id { get; private set; }
  // ...
  public int ActiveRunCount { get; private set; }
}

In the mapping for the RunContainer.ActiveRunCount property, I use the formula specification like so:

<property name="ActiveRunCount" formula="(select count(r.Id) from Run r where r.ContainerId = Id and r.Status = 1)"/>

My problem is that I refer to the RunStatus enum values in the formula by their respective numeric value, rather than the appropriate symbolic name. Can anyone tell me how can I use the symbolic name instead?

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-14T04:21:56+00:00Added an answer on May 14, 2026 at 4:21 am

    NHibernate maps enums to the string representation if the SQL column is a string type, and this is the default if you let NHibernate generate the schema.

    so:

    ALTER TABLE Run ALTER COLUMN Status varchar(20)
    

    and in the mapping

    <class name="Run">
      <!- [...] -->
      <property name="Status"/>
    </class>
    

    Now the SQL table will contain a string representation of the enum. The formula can now query for it:

    <property name="ActiveRunCount" formula="
      (select count(r.Id) from Run r 
      where r.ContainerId=Id and r.Status='Active')"/>
    

    (If you already have data in the tables, you should write a conversion instead of the bare ALTER COLUMN statement).


    EDIT after comment:

    To generate the mapping file and make sure you have the enum value in the formula right, you could use FluentNhibernate. The mapping for the ActiveRun property would look like this:

    Map(x => x.ActiveRunCount)
     .Formula(string.Format("(select count(r.Id) [...] and r.Status='{0}')",
       RunStatus.Active))
    

    If that is what you were looking for, you could also keep the integers in the columns and do this:

    Map(x => x.ActiveRunCount)
     .Formula(string.Format("(select count(r.Id) [...] and r.Status={0})",
       (int)RunStatus.Active))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 380k
  • Answers 380k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer for php you can use fsockopen function May 14, 2026 at 9:50 pm
  • Editorial Team
    Editorial Team added an answer jQuery.html() removes scripts and styles That isn't my experience (see… May 14, 2026 at 9:50 pm
  • Editorial Team
    Editorial Team added an answer \d matches any number, so you want to replace them… May 14, 2026 at 9:50 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

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.