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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:46:38+00:00 2026-06-04T07:46:38+00:00

I like to write synthetic query on db tables like the following: Decimal sum

  • 0

I like to write synthetic query on db tables like the following:

Decimal sum = MyDataContext.MyTable.Where(el => el.Client == selectedClien).Sum(el => el.Value.GetValueOrDefault(0));

Unfortunately it throws an error if the where clause return no elements at all.
Before using .Sum I should check with .Any if I have some elements but the resulting code is ugly compared with the initial one. Don’t think putting a try/catch block is a good solution.

Do you have something better that the following code to suggest ?

if (MyDataContext.MyTable.Where(el => el.Client == selectedClien).Any())
  sum =  MyDataContext.MyTable.Where(el => el.Client == selectedClien).Sum(el => el.Value.GetValueOrDefault(0));
else sum = 0;

Thanks
Filippo

Added after some more investigation:

MyDataContext.MyTable.Where(el => el.Client == selectedClien).Sum(el => el.Value).GetValueOrDefault(0)

The code above works well when the collection is empty. The reason I put ‘GetValueOrDefault(0)’ in the lambda inside .Sum() is the field ‘Value’ is Decimal?, so it could be null. I have not yet tested the case where some elements have null values.

  • 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-04T07:46:39+00:00Added an answer on June 4, 2026 at 7:46 am

    Surprisingly (to me) i introduced a possible exception cause trying to make my code more robust!
    The right way to write robust code is the following:

    Decimal sum = MyDataContext.MyTable.Where(el => el.Client == selectedClien).Sum(el => el.Value).GetValueOrDefault(0);
    

    As stated in a comment above and in the msdn documentation the

    Enumerable.Sum<TSource> Method (IEnumerable<TSource>, Func<TSource, Nullable<Decimal>>)
    

    is robust against null values and empty collections. GetValueOrDefault() assures it returns a non null Decimal.

    Anyway it is still not very clear why the initial code throws exception.

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

Sidebar

Related Questions

I would like to write a hql query using a dynamic instantiation with a
Not that I would ever write the code like the following in my professional
I like to write a process in Worker role, to download (sync) batch of
i'd like to write a wrapper for a C++ framework. this framework is kinda
I'd like to write an Ant script that calls an external utility (Inkscape, in
I would like to write a cross-platform function in C++ that contains system calls.
I would like to write an if statement that will do something base on
I'd like to write a decorator that would limit the number of times a
I would like to write some Objective-C code for distribution. What is the best
I'd like to write a doctest like this: >>> print a.string() foo : a

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.