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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T19:04:48+00:00 2026-05-17T19:04:48+00:00

Have this scenario: public class Base { public string Name; } public Class ClassA

  • 0

Have this scenario:

public class Base {  public string Name; }

public Class ClassA :Base {  public int32 Number;  }

public Class ClassB :Base { public string Description;}

public Class DTO {
  public string Name;
  public int32 Number;
  public string Description;
}

I have an IList<Base>
my maps are:

AutoMapper.Mapper.CreateMap<IList<Base>, IList<DTO>>()
   .ForMember(dest => dest.Number, opt => opt.Ignore())
   .ForMember(dest => dest.Description, opt => opt.Ignore());

AutoMapper.Mapper.CreateMap<ClassA, DTo>()
   .ForMember(dest => dest.Description, opt => opt.Ignore());

AutoMapper.Mapper.CreateMap<ClassB, DTO>()
   .ForMember(dest => dest.Number, opt => opt.Ignore())

Mapper.AssertConfigurationIsValid(); //Is OK!

But Properties that are in ClassA Or ClassB are not mapped when I do this :

IList<DTO>= AutoMapper.Mapper.Map<IList<Base>,IList<DTO>>(baseList);

How can I do to map properties that are defined in ClasA and ClassB

  • 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-17T19:04:49+00:00Added an answer on May 17, 2026 at 7:04 pm

    You will need to create DTO classes that match your domain classes like this:

    public class DTO
    {
        public string Name;
    }
    
    public class DTO_A : DTO
    {
        public int Number { get; set; }
    }
    
    public class DTO_B : DTO
    {
        public string Description { get; set; }
    }
    

    You then need to change your mappings to this:

            Mapper.CreateMap<Base, DTO>()
                .Include<ClassA, DTO_A>()
                .Include<ClassB, DTO_B>();
    
            Mapper.CreateMap<ClassA, DTO_A>();
    
            Mapper.CreateMap<ClassB, DTO_B>();
    
            Mapper.AssertConfigurationIsValid();
    

    Once this is done, then the following will work:

            var baseList = new List<Base>
            {
                new Base {Name = "Base"},
                new ClassA {Name = "ClassA", Number = 1},
                new ClassB {Name = "ClassB", Description = "Desc"},
            };
    
            var test = Mapper.Map<IList<Base>,IList<DTO>>(baseList);
            Console.WriteLine(test[0].Name);
            Console.WriteLine(test[1].Name);
            Console.WriteLine(((DTO_A)test[1]).Number);
            Console.WriteLine(test[2].Name);
            Console.WriteLine(((DTO_B)test[2]).Description);
            Console.ReadLine();
    

    Unfortunately this does mean that you have an unwanted cast, but I don’t think there’s much that you can do about that.

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

Sidebar

Related Questions

I have a similar scenario as this one: public class TestLinq2Xml { private XElement
I have the following class: public class DocketType : Enumeration<DocketType, int, string> { public
Scenario I have a single base class and 2 (possibly 3) other classes that
I have this scenario where I need data integrity in the physical database. For
we have this scenario: A server which contains needed data and client component which
I have this typical scenario. I have a smartclient application built on .net 2.0
This is a question for a WSS/SharePoint guru. Consider this scenario: I have an
The scenario is this We have two applications A and B, both which are
Scenario: I have a document I created using LaTeX (my resume in this case),
Much related to this question , we have a scenario on my team where

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.