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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T05:00:50+00:00 2026-05-21T05:00:50+00:00

I want to track additional user profile information in my own table rather than

  • 0

I want to track additional user profile information in my own table rather than the default tables setup by ASP.Net. So how do you make a foreign key that maps to the aspnet_Users.UserId field in my UserInfoModel class?

public class UserInfoModel
{

    [MaxLength(30)]
    [Display(Name = "First Name")]
    public string FirstName { get; set; }

    [MaxLength(50)]
    [Display(Name = "Last Name")]
    public string LastName { get; set; }
}
  • 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-21T05:00:50+00:00Added an answer on May 21, 2026 at 5:00 am

    I’ve done something similar:

    public class User
    {
        [Key]
        public Guid UserId { get; set; }
        public string UserName { get; set; }
    }
    
    public class UserDetail
    {
        [Key]
        public Guid UserId { get; set; }
        public string FullName { get; set; }
        public string CompanyName { get; set; }
    }
    
    public class UserMembership
    {
        [Key]
        public Guid UserId { get; set; }
        public string Password { get; set; }
        public string Email { get; set; }
        public bool IsApproved { get; set; }
        public bool IsLockedOut { get; set; }
    }
    

    And here are the configurations for those tables:

    public class UserConfig : EntityConfiguration<User>
    {
        public UserConfig()
        {
            this.MapSingleType(user => new
            {
                UserId = user.UserId,
                UserName = user.UserName
            }).ToTable(new StoreTableName("aspnet_Users", "dbo"));
        }
    }
    
    public class UserDetailConfig : EntityConfiguration<UserDetail>
    {
        public UserDetailConfig()
        {
            this.HasKey(u => u.UserId);
            this.MapSingleType(ud => new
            {
                UserId = ud.UserId,
                FullName = ud.FullName,
                CompanyName = ud.CompanyName
            }).ToTable(new StoreTableName("UserDetail", "dbo"));
        }
    }
    
    public class UserMembershipConfig : EntityConfiguration<UserMembership>
    {
        public UserMembershipConfig()
        {
            this.HasKey(m => m.UserId);
    
            this.MapSingleType(membership => new
            {
                UserId = membership.UserId,
                Password = membership.Password,
                Email = membership.Email,
                IsApproved = membership.IsApproved,
                IsLockedOut = membership.IsLockedOut
            }).ToTable(new StoreTableName("aspnet_Membership", "dbo"));
        }
    }
    

    Your database context:

    public class TLI_FBA : DbContext
    {
        public DbSet<User> Users { get; set; }
        public DbSet<UserDetail> UserDetails { get; set; }
        public DbSet<UserMembership> UserMemberships { get; set; }
    
        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            modelBuilder.Configurations.Add(new UserConfig());
            modelBuilder.Configurations.Add(new UserDetailConfig());
            modelBuilder.Configurations.Add(new UserMembershipConfig());
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have a table where i want to track time so a valid entry
Here is my problem, I want to track if user is online or offline
I have an MP3 file uploader. I want to add an additional audio track
In addition to informing the user, we want to collect information for our debugging
I want to track how much traffic I'm getting on an RSS feed that
We want to track the time taken by a web service call between a
I want to track incoming traffic to a website from campaigns. A campain link
I want to track a person's movement on mapview in my iphone. I am
I am storing Integer objects representing an index of objects I want to track.
I'm creating an API for my Rails app, and I want to track how

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.