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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T12:09:42+00:00 2026-06-18T12:09:42+00:00

I have a list that has been populated from a fetchXML query, but unfortunately

  • 0

I have a list that has been populated from a fetchXML query, but unfortunately it is returning a lot of events with duplicate titles. So as a solution i’m hoping to loop through each item in the list and, if the title is the same as the previous item, then I would like to add the values from item.YearId & item.Year to a list of years within the previously looped item.

var result = from p in fetchResults.Root.Elements("result") ... //etc

//Creating another list to contain desired results.
List<Event> eventDetails = new List<Event>();

//Create to store the previously looped title.
string previousTitle = string.Empty;

foreach (var item in result)
{
    if (item.Name == previousTitle)
    {
        //Not sure how to add item.yearId and item.Year to a Year
        //list inside the previously looped.
    }
    else
    {
        //otherwise add who item to eventDetails list.
        eventDetails.Add(item);
    }

    previousTitle = item.Name;
}

So, the Event class contains a Year list property that which consists of a guid (item.YearId) and an int (item.Year).

Hope that this makes sense. Any examples would be great. Thank you.

  • 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-18T12:09:43+00:00Added an answer on June 18, 2026 at 12:09 pm

    You could use something like this. I dont know what your event object looks like, but you should get the idea.

    List<Event> eventDetails = new List<Event>();
    Event lastEvent = null;
    
    foreach (var item in result)
    {
        if ((lastEvent != null) && (lastEvent.Name == item.Name))
        {
            lastEvent.AddYearAndYearId(item.Year, item.YearId);
            eventDetails[eventDetails.Count - 1] = lastEvent;
        }
        else
        {
            eventDetails.Add(item);
            lastEvent = item;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a datagridview that has been populated from a datatable using the datasource
I have a list of dates that a machine has worked on, but it
I have a picker view that has a list of numbers to pick from.
I have a list that has two items: projects and groups. Projects can go
I have a list that has some chapter numbers in string. When I sort
I have a drop down list that has options that need to be passed
I have a string list (TStrings) that has a couple thousand items in it.
I have a list, that has three fields: Title, PublishingRollupImage and Description. I want
I have a list view that displays a collection of items, each item has
I have a website that has products list page and product detail page .

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.