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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T17:08:16+00:00 2026-05-24T17:08:16+00:00

I have a table of Users and a table of Profiles . One user

  • 0

I have a table of Users and a table of Profiles. One user can have many profiles and a profile can have many users. An additional requirement is that the user’s profiles should persist their specified order when saved to the database. Therefore I have the following relationships:

tables

How can I properly map this to classes with NHibernate? Is the only way to create another class like UserProfile that has an Order property and references the User and Profile? Is there a sleeker technique to this? I’d like to avoid this since it would add another layer of abstraction that isn’t necessarily needed.

Thanks for any suggestions.

  • 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-24T17:08:17+00:00Added an answer on May 24, 2026 at 5:08 pm

    I’ve actually found the correct way to solve this problem.

    FluentMappings mappings should use AsMap(indexColumnName) or <map name="Profiles"><index column="Order" type="integer" /></map>.

    // Inside the UserMapping (or an AutoMappingOverride).
    this.ManyToMany(u => u.Profiles).AsMap("`Order`"); // "Order" is the column we want!
    
    // Which produces this SQL - SQLite in my case:
    create table ProfileToUser (
        User_id INT not null,
        Profile_id INT not null,
        "Order" INT not null,           // Exactly what I wanted.
        primary key (User_id, Order))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one problem with users menu. So, I want, that authenticated user can
I have a table that has account numbers in (account_num) and user profiles (profile_id).
I'm building an app where each user can have multiple profiles. Users can upload
In my app I have three tables: Users Profiles Friends The User has one
I have a profiles table with userid key key_value obviously userid can have many
using php and mysql I have two tables, a users table and a profiles
I have a range of tables that I have normalized for a user profile
I have the table users and scores . Here are the associations: belongs_to :user
I have a table users with primary index userId . Currently, each user has
I have a Users table and a profile table. The reason they are separate

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.