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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T21:36:18+00:00 2026-05-23T21:36:18+00:00

I have a class and inside it, a string and a list of enumerators.

  • 0

I have a class and inside it, a string and a list of enumerators.

public enum SomeEnum
{
    Undefined=0,
    Enum1,
    Enum2,
    Enum3,
    End
}
public class SomeObject
{
    public virtual int ID{get; set;}
    public virtual String Name {get; set;}
    public virtual IList<SomeEnum> EnumList {get; set;}
}

Now, there should be a list of SomeObjects, containing ID and Name. There should be another map like this:

5 2
5 3
3 1
9 3

Meaning, a player with ID 5 has Enum2 and Enum3, another player with ID 3 has Enum1, and a player with ID 9 has Enum3.
They say it’s possible to map int, float etc. but I don’t want to create IList out of my list.

Is there an easy way to make fluent nhibernate do that?

HasMany(x => x.EnumList )
    .Cascade.All()
    .Table("ObjectEnumTable");

This mapping file throws an exception and says “Association references unmapped class: SomeEnum”.

Thanks in advance.

  • 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-23T21:36:19+00:00Added an answer on May 23, 2026 at 9:36 pm

    You’re better off storing your List of enum values as a straight Flags enum value, but if you absolutely must have a list of enums (you need support for duplicates or legacy database), then your mapping shoud look like this:

    HasMany(x => x.EnumList )
        .Cascade.All()
        .Table("ObjectEnumTable")
        .Element("EnumValueColumn");
    

    The key is the .Element() method which you must have for any non-entity HasMany relationship, including strings, ints, etc. This will give you the ID column referencing your parent entity, and an EnumValueColumn column with your enum value for each item.

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

Sidebar

Related Questions

I have a simple class like this: public class myClass { public List<string> innerList;
I have the following dependency property inside a class: class FooHolder { public static
Inside public class IAmHere extends Activity implements LocationListener { i have @Override public void
Given, public class SomeClass { public string SomeName{get;} public List<string> RelatedNames{get;} } public class
I have a Lazy<List<T>> where T is a class which has a huge string
Class: Class: private: ... vector<string> words; vector< list<int> > vints; public: myFunction(...) I am
Assume the following: we have class B, which is a private class nested inside
I have an anonymous inner class inside another class ( SomeClass ). Both SomeClass.class.getClasses()
I have a class with an NSDictionary attribute. Inside this class I dispatch another
I have a class (simulation) which creates an instance of another class (GUI). Inside

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.