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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:16:41+00:00 2026-06-15T20:16:41+00:00

How does one map many to many relationships? One-to-one relationships are easy…. Assuming… public

  • 0

How does one map many to many relationships?

One-to-one relationships are easy….

Assuming…

public class ProductDTO
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int SupplierId { get; set; }
}

public class Product
{
    public int Id { get; set; }
    public string Name { get; set; }
    public double Cost { get; set; }
    public Supplier Supplier { get; set; }
}

public class Supplier
  {
    public int Id { get; set; }
    public string Name { get; set; }
    public int Rating { get; set; }
    public ICollection<Product> Products { get; set; }
}

 Mapper.CreateMap<Product, ProductDTO>()
            .ForMember(d => d.SupplierId, m => m.MapFrom(s => s.Supplier.Id));

Works assuming every product has only one supplier and a supplier can have many products. How do I map it if a product can also have many suppliers?

I changed supplier line in Products to

 public ICollection<Supplier> Supplier { get; set; }

and in ProductDTO doing the same

 public ICollection<int> SupplierId { get; set; }

How do I alter CreateMap since the Ids are now collections? Autocomplete no longer shows Id and all I get are functions.

I’m new to C# so I many be missing something obvious. Am I supposed to iterate in a for loop and map the ids one by one?

  • 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-06-15T20:16:43+00:00Added an answer on June 15, 2026 at 8:16 pm

    You may try to use:

    Mapper.CreateMap<Product, ProductDTO>()         
          .ForMember(d => d.SupplierIds, m => m.MapFrom(p => p.Suppliers.Select(s => s.Id)));
    

    Another option:

    Mapper.CreateMap<Supplier, int>().ConvertUsing(s => s.Id);
    Mapper.CreateMap<Product, ProductDTO>()                                
       .ForMember(d => d.SupplierIds, m => m.MapFrom(p => p.Suppliers));
    

    One more thing if you are this using DTO to pass data from Web/WCF service you may consider using

    public ICollection<SupplierDTO> Supplier { get; set; }
    

    instead if passing supplier ids only. In most cases it’s better (and more effective) to pass more data in one call to the service than doing few calls.

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

Sidebar

Related Questions

How does one write a (Intel) F90 function that converts a string into lowercase
I try to map a one-to-many relation with cascade remove (jpa) and delete-orphan, because
does anyone know how to display more than one location on a map? i
I'm using FluentNHibernate to map a bi-directional one-to-many relationship where ordering is important, so
I have two classes in an owned one-to-many relationship. The parent is Map, and
does one perform better over the other in terms of indexing/quering etc ? e.g.
How does one wait until all of the Javascript is loaded before curling a
How does one implement a multithreaded single process model in linux fedora under c
How does one use rm to delete a file named '--help'? When I try,
How does one optimize if the parameter space is only integers (or is otherwise

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.