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

  • Home
  • SEARCH
  • 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 5841017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T11:50:01+00:00 2026-05-22T11:50:01+00:00

My use case is simple. I have a root domain object which references a

  • 0

My use case is simple. I have a root domain object which references a child object. I have a DTO passed back from a service call that represents the domain object but rather than pass the child object each time, the DTO contains a property that holds the child object’s key value. Something like this:

public class DomainObject
{
    public ChildObject Child { get; set; }
    public String Name { get; set; }
}

public class ChildObject
{
    public Int32 Key { get; set; }
    public String Name { get; set; }
}

public class DTO
{
    public Int32 ChildKey { get; set; }
    public String Name { get; set; }    
}

I have a cached list of ChildObjects. When I map from DTO=>DomainObject I want to set the DomainObject.Child property to the existing instance of ChildObject from the cache using the DTO.ChildKey property. Does this require a custom value resolver or is there another way to accomplish this?

  • 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-22T11:50:01+00:00Added an answer on May 22, 2026 at 11:50 am

    Yes you will need a custom value resolver. Something like this will do it:

    public class KeyToChildObjectResolver : ValueResolver<Int32, ChildObject>
    {
        protected override ChildObject ResolveCore(Int32 source)
        {
             return Cache.Get<ChildObject>(source);
        }
    }
    

    And then:

    Mapper.CreateMap<DTO, DomainObject>()
          .ForMember(x => x.Child, o => o.ResolveUsing<KeyToChildObjectResolver>()
                                         .FromMember(x => x.ChildKey));
    

    You could do it with a Resolver that goes straight from DTO to ChildObject but then your resolver is essentially single purpose. This way you can use it anywhere you have a child key to be mapped to a ChildObject

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

Sidebar

Related Questions

My use case is very simple : I have a GUI application, and inside
I have the following use case , lot of code which was tightly coupled
Have a use case wherein need to maintain a connection open to a database
Here is my basic use case: After Labview receives a trigger from external hardware
Use case: A does something on his box and gots stuck. He asks B
Use case: 3rd party application wants to programatically monitor a text file being generated
My use case is this, I want to call out to a webservice and
On a Use Case diagram can you show things that an actor cannot do,
What is a good use case for uncaught_exception?
Note: while the use-case described is about using submodules within a project, the same

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.