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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:16:38+00:00 2026-06-17T20:16:38+00:00

I have a BindingList that contains 100,000 objects. Each object contains a bool property

  • 0

I have a BindingList that contains 100,000 objects. Each object contains a bool property that indicates whether the object has been modified or not. I basically want to loop through the objects and when I find one with that bool property set to true, I want to set it to false. Something similar to this:

foreach (myObject obj in bindingListOfMyObjects)
{
    if (obj.Modified)
    {
        obj.Modified = false;
    }
}

Is it possible to do this using LINQ? And would that be any faster than the code above?

  • 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-17T20:16:39+00:00Added an answer on June 17, 2026 at 8:16 pm

    You could use Enumerable.Where to filter the collections, and them modify them in your loop:

    foreach (myObject obj in bindingListOfMyObjects.Where(o => o.Modified))
         obj.Modified = false;
    

    This will not be any faster, though it may be slightly easier to understand the intent.

    Note that you wouldn’t, in general, use LINQ to actually make the modifications – LINQ queries, by their nature, should not cause side effect (changing the value). They are intended to be used as queries – so filtering the objects is appropriate, and then setting in a loop. For details, I recommend reading Eric Lippert’s post on ForEach vs foreach.

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

Sidebar

Related Questions

I have an Asynchronous BindingList that contains objects that are manipulated on a worker
I have a class that contains objects of another class: public class Container {
I have a generic List<MyClass> where MyClass has a property InvoiceNumber which contains values
I have a DGV that has its datasource set to a BindingList. There is
I have a ListBox that is bound to a ViewModel property of type BindingList(Of
I have a C# WinForms app that contains a BindingList which is populated with
I have got: var orderedStatItmes = item.Statistics.OrderByDescending(t=>t.StartTime); Note that public BindingList<IStatistics> Statistics { set;
I have a BindingList<> of a class set to the DataSource property of a
I have a worker thread that needs to add items to a BindingList .
I have a derived DataGridView bound to a BindingList, and the object implements iNotifyPropertyChanged.

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.