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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:53:23+00:00 2026-06-06T15:53:23+00:00

I am having performance issues with this LINQ Query. The data is laoded into

  • 0

I am having performance issues with this LINQ Query.
The data is laoded into to this.students already.
Now when I call the GetStudentData function say 1000 times it has a huge overhead.
Is there a way of improving this without changing the LINQ to a loop

   public Student GetStudentData()
   {         
          IEnumerable<Students> studentTypes = this.students.Where(x => (x.studentsId  == studentId && x.StduentType.Equals(studentType)));
          if(studentTypes.Count==0) return new Student() { studentid=studentID};
          return (Student)studentTypes.First();
   }

So here are the results when looping through it 10000 times with my original version

Original Version : 5.6 seconds on the average
New Version @des’s Code with FirstOrDefault : 3.6 seconds

  • 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-06T15:53:26+00:00Added an answer on June 6, 2026 at 3:53 pm

    When you use Where you loop through all records which fulfill given conditions, when you use First you just search for first record which fullfills condition, so using First should speed it up.

    public Student GetStudentData()
    {         
        // get first student by id and type, return null if there is no such student
        var student = students.FirstOrDefault(i => i.studentsId == studentId && i.StudentType.Equals(studentType));
    
        // if student is null then return new student
        return student ?? new Student();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having noticing some performance issues on my MySQL Server. The slow query
I am having serious performance issues with a spatial update query in SQL Server
I am having performance issues in IE and using the browser profiler, I narrowed
Our software is deployed at a client site where they are having performance issues,
I'm writing a plug-in for another program in C#.NET, and am having performance issues
We currently are having performance issues with grails. It is taking about 10 seconds
I'm having some performance issues calling CGContextDrawLayerAtPoint in iOS 4 that didn't seem to
I'm having some serious performance issues with a multi-million row table that I feel
I am having performance issues with MongoDB. Running on: MongoDB 2.0.1 Windows 2008 R2
I'm having some performance issues since a DB was moved from SQL2000 to SQL2008.

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.