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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:20:05+00:00 2026-05-29T04:20:05+00:00

I have a working model, but have noticed that the relationship has been created

  • 0

I have a working model, but have noticed that the relationship has been created twice in the database. Originally, it created two columns in the table, but with the addition of a specified foreign key attribute it has now just the one.

I have an Account class, which has many employers who can use the account. (one to many) Here are the classes:

public class Account
{
    public int AccountId { get; set; }

    [Required(ErrorMessage = Constants.ValidationMessages.FieldRequired)]
    public string  Name { get; set; }

    public int? PrimaryUserId { get; set; }
    [ForeignKey("PrimaryUserId")]
    public Employer PrimaryUser { get; set; }

    [ForeignKey("EmpAccountId")]
    public ICollection<Employer> Employers { get; set; }

}

here is the inherited Employer class

public class Employer : User
{
    public Employer()
    {
        DepartmentsToPost = new Collection<Department>();
        Contacts = new Collection<Contact>();
    }

    [Display(Name = "Workplaces to advertise jobs")]
    public virtual ICollection<Department> DepartmentsToPost { get; set; }

    public int EmpAccountId { get; set; }
    [ForeignKey("EmpAccountId")]
    public virtual Account Account { get; set; }

    public override string UserType
    {
        get { return "Employer"; }
    }
}

User Table:

UserId
Username
FirstName     
Surname 
EmpAccountId
Discriminator 

Account Table

AccountId
Name
PrimaryUserId

There is one link back to the User table – this is for the PrimaryUser field, and this is correct. There are two other relationships: Account -> Employers. EF has named them Account_Employers and Employer_Account. These are duplicates.

How can I prevent this occuring?

  • 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-29T04:20:09+00:00Added an answer on May 29, 2026 at 4:20 am

    The Employers collection should be decorated with InversePropertyAttribute to point to the navigational property on the other side.

    public class Account
    {
        public int AccountId { get; set; }
    
        [Required(ErrorMessage = Constants.ValidationMessages.FieldRequired)]
        public string  Name { get; set; }
    
        public int? PrimaryUserId { get; set; }
        [ForeignKey("PrimaryUserId")]
        public Employer PrimaryUser { get; set; }
    
        [InverseProperty("Account")]
        public ICollection<Employer> Employers { get; set; }    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working with a string[] array in C# that gets returned from
I have everything on my polymorphic associations working, but if I have model validations,
I am coming from a Spring/hibernate background. I have noticed that Rails has no
I have a working LINQ to SQL model. I want to be able to
I'm working with a small model in Entity Framework 4.0. I'd like to have
I have a trouble trying to get this working. I have an Item model,
I am working with Google App Engine and Python. I have a model with
I have been working on a web services related project for about the last
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
We have been working with CVS for years, and frequently find it useful to

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.