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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T01:11:41+00:00 2026-05-27T01:11:41+00:00

I have a user object like so: public class User { public Guid UserId

  • 0

I have a user object like so:

public class User
{
    public Guid UserId { get; set; }
    public string UserName { get; set; }
    ...
}

this is fluently mapped in nhibernate:

public class UserMap : ClassMap<User>
{
    public UserMap()
    {
        Id(x => x.UserId).Column("UserId");
        Map(x => x.UserName).Not.Nullable();
        ...
    }
}

I’m trying to build a credential block that is separate from the user object, so the password and salt are not carried around in the user class like so:

public class UserCredential
{
    public User User { get; set; }
    public byte[] Password { get; set; }
    public string Salt { get; set; }
}

…but I cannot figure out how to properly map this. Ultimately, in the database, I would expect to see a UserId column in the UserCredentials table, that is both a primary key and a foreign key to the Users table. The Users table should have no reference to the UserCredentials table. How would I write that ClassMap<UserCredential> class?

  • 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-27T01:11:42+00:00Added an answer on May 27, 2026 at 1:11 am

    This seems to be a one-to-one relationship and would therefore be mapped using HasOne in FNH.

    Example

        public UserCredentialMap()
        {
            Id(x => x.Id)
                .Column("UserId")
                .GeneratedBy.Foreign("User");
    
            HasOne(x => x.User).Constrained();
        }
    

    You may be able to map it like this as well:

    public UserCredentialMap()
    {
        Id(x => x.Id, "UserId");
    
        References(x => x.User, "UserId")
                .Not.Update()
                .Not.Insert();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class like public User class { public string Name{get;set;} public string
Suppose I have a simple Java class like this: public class User { String
I have a simple object like this public class Test { public string Name
I have a script which creates a user-defined object like this: obj = new
I have the following two classes: public class User { public Integer userId; //
i want something like this : public class Order { public Guid OrderID {
I have an object called User, with properties like Username, Age, Password email etc.
If I have for example one class like public class User{ public int Id
I have a domain object annotated like this for hibernate support. @Entity @Table(name =
In my Spring context file I have something like this: <bean id=userCheck class=a.b.c.UserExistsCheck/> <aop:config>

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.