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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:56:30+00:00 2026-05-23T04:56:30+00:00

I have an entity named Affaire as below: [Key] public string IdAffaire { get;

  • 0

I have an entity named Affaire as below:

    [Key]
    public string IdAffaire { get; set; }
    public string Title { get; set; }
    public string Note { get; set; }

I also have an entity named Suite as below:

    [Key]
    public string IdSuite { get; set; }
    public string IdAffaire { get; set; }
    public string Description { get; set; }

    [ForeignKey("IdAffaire")]
    public virtual Affaire Affaire { get; set; }

One affaire can have multiple suites.
Each suite is related to one affaire.

In my suite table, I have the following records:

IdSuite/IdAffaire/Description
0001/12.345/Description1
0001/13.666/DescriptionA
0002/13.666/DescriptionB
0003/13.666/DescriptionC
0004/13.666/DescriptionD

The problem: in my code, if I try to get a list of all suites, I get the following:

IEnumerable<Suite> suites

0001/12.345/Description1
0001/12.345/DescriptionA
0002/13.666/DescriptionB
0003/13.666/DescriptionC
0004/13.666/DescriptionD

As you can see, something’s wrong with the data returned??

Do you have an idea?

Thank you very much 🙂

Edited for posting code:

... 
IEnumerable<Suite> suites;
...

When I debug this line of code and inspect the suites variable, I received wrong result (as showed up).

Maybe the problem is that I need to define correctly my primary key on table Suite: composed of two fields IdAffaire an IdSuite How can I do?

  • 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-23T04:56:30+00:00Added an answer on May 23, 2026 at 4:56 am

    Ok, I found the problem: because I have a composite primary key, I need to define it like this:

    Suite entity:

    [Key, Column(Order=0)]
    public string IdSuite { get; set; }
    [Key, Column(Order=1)]
    public string IdAffaire { get; set; }
    public string Description { get; set; }
    
    [ForeignKey("IdAffaire")]
    public virtual Affaire Affaire { get; set; }
    

    Thank you anyway 🙂

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

Sidebar

Related Questions

Using NHibernate.Mapping.Attributes, I have a entity class with something like: [Class] public class EntityA
I have the following entity structure: public class Party { public Int32 PartyId {
I would like to have an entity named GROUP in my JPA setup. Now
I have a question regarding DataBase design. I have a Entity Table named: CARS
I have a core data entity named Folder. Each Folder has a 1-to-many relationship
I have a JPA 2 Entity named Surgery . It has a member named
I have an entity named Tour which can have many Agents . I am
I have an entity named Status where I store different status. I have two
I have created a Entity named MediaItem which is Abstract and Game inherits form
I have an entity in EF named Profile and I would like to add

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.