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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:45:20+00:00 2026-05-28T13:45:20+00:00

I am in the middle of migrating from Linq2Sql to Entity Framework and I

  • 0

I am in the middle of migrating from Linq2Sql to Entity Framework and I got really stuck on one thing.

I have one table MappingSet. Which has a PK, MappingSetId. Then I also have a table XpathMappingSet which has the same PK, MappingSetId. It is both an FK and a PK.

In then I have a property on MappingSet which is called XpathMappingSet. This is null of there is no corresponding row in the XpathMappingSet table.

How can I configure this? I tried the following, but that didn’t really work:

HasOptional(m => m.XpathMappingSet).WithRequired(m => m.MappingSet).Map(m => m.MapKey("MappingSetId"));

The exception I got was:

(66,6) : error 0019: Each property name in a type must be unique. Property name ‘MappingSetId’ was already defined.

This all worked well in L2S but I cannot get it to work using Entity Framework.

MappingSet

public partial class MappingSet : BaseEntity
    {
        public int MappingSetId { get; set; }
        public virtual XpathMappingSet XpathMappingSet { get; set; }
    }

XpathMappingSet

public partial class XpathMappingSet
{
    public int MappingSetId { get; set; }
    public virtual MappingSet MappingSet { get; set; }
}

Mapping of XpathMappingSet

public partial class XpathMappingSetMap : EntityTypeConfiguration<XpathMappingSet>
{
    public XpathMappingSetMap()
    {
        ToTable("XpathMappingSets");

        HasKey(m => m.MappingSetId);

    }
}

Mapping of MappingSet

public partial class MappingSetMap : EntityTypeConfiguration<MappingSet>
{
    public MappingSetMap()
    {
        ToTable("MappingSets");
        HasKey(m => m.MappingSetId);
        HasOptional(m => m.XpathMappingSet).WithRequired(m => m.MappingSet).Map(m=>m.MapKey("MappingSetId"));
    }
}
  • 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-28T13:45:22+00:00Added an answer on May 28, 2026 at 1:45 pm

    Okay, I solved it.

    I changed the mapping for xpathmappingset to:

    public partial class XpathMappingSetMap : EntityTypeConfiguration<XpathMappingSet>
    {
        public XpathMappingSetMap()
        {
            ToTable("XpathMappingSets");
    
            HasKey(m => m.XpathMappingSetId);
    
            Property(m => m.XpathMappingSetId).HasColumnName("MappingSetId");
        }
    }
    

    it didn’t like the fact that it had the same name

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

Sidebar

Related Questions

I have a middle size query with 500.000 registers from an Oracle to an
We're in the middle of migrating from a windows & SQL 2000 box to
We have a fairly robust system using NHibernate, we're in the middle of migrating
after migrating a system/database we modified a central table which has been used for
I am in the middle of migrating my application from using subdirectories for userspace
We have a SQL server 2008 and one of the tables, say table A
I have inherited a middle tier system with some multi-Threading issues. Two different threads,
I am in the middle of solving a problem which requires me to do
I am in the middle of moving a permission system from PHP to MySQL
I'm in the middle of building a simple iPhone calendar app, & I really

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.