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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T09:24:40+00:00 2026-05-12T09:24:40+00:00

I am having a problem in Fluent NHibernate example utilizing the Many-to-Many relationships. I

  • 0

I am having a problem in Fluent NHibernate example utilizing the Many-to-Many relationships. I tried to find out examples on a similar case, and I found tons, but I’m still having the same problem.

When running the test project, the following exception is thrown:

NHibernate.PropertyAccessException: Exception occurred getter of project.Entities.User.UserName —> System.Reflection.TargetException: Object does not
match target type.

This is an image of the tables:

Tables

and the code

 public UsersMap()
    {

        this.Table("Users");
        Id(x => x.UserName).Column("Username").GeneratedBy.Assigned();

        Map(x => x.FirstName);
        Map(x => x.LastName);
        Map(x => x.Password);
        Map(x =>x.EMail);
        Map(x => x.Title);
        Map(x => x.Division);


        HasManyToMany<User>(x => x.Roles)
            .Table("UserInRoles").ParentKeyColumn("Username")
            .ChildKeyColumn("Usernamepk")
           .Cascade.SaveUpdate().LazyLoad();


    }

  public RolesMap()
    {
        this.Table("Roles");
        Id(x => x.ID).GeneratedBy.Assigned().Column("ID");
        Map(x => x.RoleName).Length(50);

        HasManyToMany<User>(x => x.Users)
            .Table("UserInRoles").ParentKeyColumn("ID")
            .ChildKeyColumn("RoleIdpk").Cascade.SaveUpdate().LazyLoad();

    }

here is the code, most examples on the web and the Fluent Nhibernate mappings page are written in the same way, so any ideas ?

  • 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-12T09:24:41+00:00Added an answer on May 12, 2026 at 9:24 am

    Regarding to code I am using in my project I would define your manyTomany relations this way:

     public UsersMap()
        {
    ...
                HasManyToMany(x => x.Roles)
                    .WithTableName("UserInRoles")
                    .WithParentKeyColumn("Usernamepk")
                    .WithChildKeyColumn("RoleIdpk");
        }
    
      public RolesMap()
        {
    ...
                HasManyToMany(x => x.Users)
                    .WithTableName("UserInRoles")
                    .WithParentKeyColumn("RoleIdpk")
                    .WithChildKeyColumn("Usernamepk");
    
        }
    

    Such a definitions works for me.
    Check this first then decorate with LazyLoading and some other properties.

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

Sidebar

Related Questions

I'm having a problem with Fluent NHibernate mappings, I think, and can't quite get
I'm using ASP.NET MVC + NHibernate + Fluent NHibernate and having a problem with
I'm having a problem with a pretty simple setup in NHibernate. (I'm using Fluent
I'm having a problem with fluent nhibernate cascade delete. I'm sure I'm doing something
I'm having a similar problem to these questions: NHibernate 2.* mapping files: how to
I am having a problem trying to map out a many-to-many relationship , where
I am using fluent nhibernate(v1.2) and nhibernate(v3.1) and I am having a weird Problem.
I am having problem in getting reference of Ajax control extender using $find() or
I'm having problems deleting a row using fluent nhibernate. If i execute the below
Having problems with my ASP.NET MVC2 project. I'm using Fluent NHibernate as ORM, and

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.