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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:56:33+00:00 2026-06-08T06:56:33+00:00

i have a list public class Org { public string Name; public List<OrgPost> OrgPostCollection=

  • 0

i have a list

public class Org
{
  public string Name;
  public List<OrgPost> OrgPostCollection= new List<OrgPost>();
}

public class OrgPost
{
  public string OrgPostTitle;
}

and have:

List<Org> OrgCollection=//GetAll(Org);

and now i have a list of org like this

   [Name,OrgPostCollection]
   [Name2,OrgPostCollection2]
   ...

but i need something like this:

   [Name1,OrgPostCollection[0]]
   [Name1,OrgPostCollection[1]
   [Name2,OrgPostCollection[0]]
   [Name2,OrgPostCollection[1]]
   ...
  • 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-08T06:56:35+00:00Added an answer on June 8, 2026 at 6:56 am

    You can do a nested select:

       var flatEnumerable = from o in OrgCollection
                            from p in o.OrgPostCollection
                            select new Tuple<Org, OrgPost>(o, p);
    

    You can then project whatever you want in the select, I project a Tuple<Org, OrgPost>.

    The result flatEnumerable is IEnumerable<Tuple<Org, OrgPost>>, you can then call ToList or ToArray to resolve the enumerable into a list or array:

    List<Tuple<Org, OrgPost>> flatList = flatEnumerable.ToList();
    Tuple<Org, OrgPost>[] flatArray = flatEnumerable.ToArray();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list of this class: public class Data { public string name
I have a list of parameters like this: public class parameter { public string
I have code that looks like this: template<class T> class list { public: class
I have a model public class Person { public string Name { get; set;
I have an entity like this: @Entity @Table(name = PLATFORM) public class Platform{ @Id
I have an ASP.NET WebService that returns an object of List public class Students
I have such a class: public class Cycle { public List<int> Edges { get;
I have the following class: public class LooklessControl : Control { public List<int> IntList
I have the following classes [XmlRoot] public class AList { public List<B> ListOfBs {get;
I have the following ViewModel public class RecommendationModel { public List<CheckBoxItem> CheckBoxList { get;

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.