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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:39:46+00:00 2026-05-11T19:39:46+00:00

The following method is pretty simple, I’m trying to determine a line-item rate by

  • 0

The following method is pretty simple, I’m trying to determine a line-item rate by matching up another property of the line-item with a lookup from a parent object. There’s a few things I don’t like about it and am looking for elegant solutions to either make the method smaller, more efficient, or both. It works in it’s current state and it’s not like it’s noticeably inefficient or anything. This isn’t mission critical or anything, more of a curiosity.

    private decimal CalculateLaborTotal()
    {
        decimal result = 0;

        foreach (ExtraWorkOrderLaborItem laborItem in Labor)
        {
            var rates = (from x in Project.ContractRates where x.ProjectRole.Name == laborItem.ProjectRole.Name select x).ToList();
            if (rates != null && rates.Count() > 0)
            {
                result += laborItem.Hours * rates[0].Rate;
            }
        }
        return result;
    }

I like the idea of using List<T>.ForEach(), but I was having some trouble keeping it succinct enough to still be easy to read/maintain. Any thoughts?

  • 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-05-11T19:39:47+00:00Added an answer on May 11, 2026 at 7:39 pm

    Something like this should do it (untested!):

    var result = 
        (from laborItem in Labor
         let rate = (from x in Project.ContractRates 
                     where x.ProjectRole.Name == laborItem.ProjectRole.Name 
                     select x).FirstOrDefault()
         where rate != null
         select laborItem.Hours * rate.Rate).Sum();
    

    Or (assuming only one rate can match) a join would be even neater:

    var result = 
        (from laborItem in Labor
         join rate in Project.ContractRates
             on laborItem.ProjectRole.Name equals rate.ProjectRole.Name
         select laborItem.Hours * rate.Rate).Sum();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The following method does its job but keeps printing a warning also, im pretty
The following method, when called with something like String val = getCell(SELECT col FROM
The following method is launched from the constructor of UserControl. A cross thread exception
I have the following method where I want to test the event.status property only
This method does the following : it gets the int startAge from the Database.
The following code is pretty self-explanatory and my question is very simple : Why
I'm doing a pretty simple thing here, making a POST request to Django from
I have a pretty simple problem. I'm creating several buttons with a method in
The following method calculates cost. It access other classes when required. Cloud class holds
The following method does not apply the wpf changes (background = red) until the

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.