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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T00:39:10+00:00 2026-06-09T00:39:10+00:00

How can you determine the current items position whilst looping through the collection? I’m

  • 0

How can you determine the current items position whilst looping through the collection?

I’m working through decision data, grouped by each client, but I have some business logic which depends on the “position” in the set, i.e. 1st, 2nd, 3rd, etc. in conjunction with other properties of the record, e.g. if it’s the 3rd decision about a client and their rating in the instance is A then …

var multiples = from d in context.Decision_Data
                group d by d.Client_No
                    into c
                    where c.Count() > 1
                    select c;

foreach (var grouping in multiples)
{
    foreach (var item in grouping)
    {
        // business logic here for processing each decision for a Client_No
        // BUT depends on item position ... 1st, 2nd, etc.
    }

UPDATE: I appreciate I could put a counter in and manually increment, but it feels wrong and I’d of thought there was something in .NET to handle 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-06-09T00:39:12+00:00Added an answer on June 9, 2026 at 12:39 am

    Something like this:

    foreach (var grouping in multiples)
    {
        foreach (var x in grouping.Select(index,item) => new {index, item})
        {
            // x.index is the position of the item in this group
            // x.item is the item itself
        }
    }
    

    Side note: you can make the implementation of your LINQ query a bit more efficient. Count() > 1 will completely enumerate each group fully, which you are likely to do in the foreach anyway. Instead you can use Skip(1).Any(), which will stop iterating the group as soon as it finds two items. Obviously this will only make a real difference for (very) large input lists.

    var multiples = from d in context.Decision_Data
                    group d by d.Client_No
                        into c
                        where c.Skip(1).Any() 
                        select c;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I determine the current shell I am working on? Would the output
I can determine the current number of connections by db.serverStatus().connections but all that gives
Is there a sensible way to determine whether the current user can access an
How can I determine the current row where a selection is active of the
How can I determine the current CPU utilization from the shell in Linux? For
How can I determine the current date and time of various countries using a
How can I determine if current action is a ChildAction or routed main action?
How can I determine if the current Drupal page is a search results page?
while using database under MySQL how can i determine my current MySQL version,database name
Using Java 6 in OSX, how can I determine if the current hardware is

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.