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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T16:38:21+00:00 2026-06-12T16:38:21+00:00

Is It possible to populate a List from within a EF query? My DTO

  • 0

Is It possible to populate a List from within a EF query? My DTO is as follows:

public DTO()
{
  public string ClientName { get; set;}
  public List<string> RelatedCodes { get; set;}
}

My method to populate DTO =

Public DTO MyResult(string ClientCode)
{
   return (from o in repository.RelatedClient 
           where o.LeadCode == ClientCode 
           select new DTO { ClientName = o.ClientName, RelatedCodes = o.RelatedCodes.ToList()});
}

I know I shouldn’t be adding the ToList() within the query or if I can I am doing it very wrong. Can anyone advise how this is done. My DTO is cut down for this example but I want to have lots of single properties and a List<> (or several Lists) in a DTO with one Entity query if possible?

So following answer below I presume there isnt a way to query this direct. My original option would have been:

Public DTO MyResult(string ClientCode)
{
         var temp = (from o in repositry.RelatedCode Where o.LeadCode == ClientCode select o).ToList();

          DTO dto = (from o in repository.LeadClient Where o.LeadCode == ClientCode Select o.ClientName).Firstordefault();

         foreach(string rc in temp)
            {    dto.RelatedCode.Add(rc);}  
         return dto;

  }

I am happy with this but would be grateful if someone could advise if this is the correct way to deal without something like automapper. I am trying to learn Entity Framework and want to check I am not missing some built in functionality.

  • 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-12T16:38:22+00:00Added an answer on June 12, 2026 at 4:38 pm

    Something like:

    var dtoEntity = repo.RelatedClient.SingleOrDefault(x => x.LeadCode == ClodeCode);
    
    DTO d = new DTO();
    d.ClientName = dtoEntity.ClientName;
    foreach (var relatedCode in dtoEntity.RelatedCodes)
    {
        d.RelatedCodes.Add(relatedCode);
    }
    
    return d;
    

    Using this approach you can add as many properties as you’d like. However, I’d suggest using AutoMapper for this.

    Read more here:

    http://nuget.org/packages/automapper

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

Sidebar

Related Questions

Possible Duplicate: Where can I get a list of all countries/cities to populate a
Is it possible to populate a dropdown list with query results? For example with
Possible Duplicate: List<T> readonly with a private set I have a class as: public
I need to insert data from two list (populate from cursors) in the same
Possible Duplicate: Based on date, get todays and the next two days values from
public IEnumerable<SelectListItem> GetList(int? ID) { return from s in db.List orderby s.Descript select new
I populate a list of dates from a MySQL database like this: <?php while
i want to populate a List in an HTML5 File (displayed within a WebView)
Is it possible to populate a listview with a dataset? I have a function
I have discovered that it is possible to populate resource strings with variable information

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.