vote up 2 vote down star
1

I am new to linq and am trying to create some data points from a table to graph. The three fields of importance in this table are the id, the time and the value. I am writing a query to get the average value over a set time for a chosen id. The linq I have written follows:

var value = (from t in _table
             where t.Id == id
                 && t.Time >= intervalStartTime
                 && t.Time <= intervalEndTime
             select t.Value).Average();

However this crashes at runtime with:

"The null value cannot be assigned to a member with type System.Decimal which is a non-nullable value type.."

At certain intervals there is no data so the SQL linq generates returns null, which I would liked to be COALESCED to 0 but instead crashes the application. Is there a way to write this linq query to be able to handle this properly?

EDIT

I'll add the table definition to make things clearer.

[Serializable]
[Table(Name = "ExampleTable")]
public class ExampleTable
{
   [Column(Name = "Id")]
   public int Id { get; set; }

   [Column(Name = "Time")]
   public DateTime Time { get; set; }

   [Column(Name = "Value")]
   public int Value{ get; set; }
}
flag

5 Answers

vote up 2 vote down check

I think you want

var value = (from t in _table
             where t.Id == id
                && t.Time >= intervalStartTime
                && t.Time <= intervalEndTime
             select (int?)t.Value).Average()

This way, you get a double? back, whereas without the (int?) cast you need to get a double back, which cannot be null.

This is because of the signatures

double Enumerable.Average(IEnumerable<int> source)
double? Enumerable.Average(IEnumerable<int?> source)

Now, to get an average of 0 instead of null, you need to place the coalescing operator at the end

var value = (from t in _table
             where t.Id == id
                && t.Time >= intervalStartTime
                && t.Time <= intervalEndTime
             select (int?)t.Value).Average() ?? 0.0;


IMHO this is a pretty awful design of the Enumerable/Queryable class; why can't Average(IEnumerable<int>) return double?, why only for Average(IEnumerable<int?>)?

link|flag
Thank you that's done it. – Dominic Godin Aug 17 at 11:56
vote up 3 vote down

EDIT: Complete change :)

Okay, how about this:

var value = (from t in _table
             where t.Id == id
                 && t.Time >= intervalStartTime
                 && t.Time <= intervalEndTime
             select t.Value).DefaultIfEmpty().Average()

I believe that's logically what you want - changing {} to {0}, so making all averages achievable. I don't know if it'll do what you want in terms of SQL though.

link|flag
Sorry this doesn't work as Value is a non-nullable int. – Dominic Godin Aug 17 at 10:17
Then remove the "m" from the 0 and it should work just fine. – Andrew Hare Aug 17 at 10:25
Ah, I'm approaching this incorrectly... hang on. – Jon Skeet Aug 17 at 10:27
Thanks but still no joy. Throws a "Could not format node 'OptionalValue' for execution as SQL." – Dominic Godin Aug 17 at 10:41
vote up 1 vote down

EDIT: Total Rework

Try casting the value to nullable first

var value = (from t in _table
         where t.Id == id
             && t.Time >= intervalStartTime
             && t.Time <= intervalEndTime
         select ((int?)t.Value) ?? 0).Average()
link|flag
select t.Value ?? 0 doesn't compile as t.Value is a non-nullable int. – Dominic Godin Aug 17 at 10:25
have you tried this edit? what is the result? – Simon Fox Aug 17 at 11:24
Yes, the complier tells me the left operand will never be null as Value is not nullable – Dominic Godin Aug 17 at 11:26
Are you sure you have the brackets etc. correct? The cast to nullable is legit so Value should have already been evaluated... – Simon Fox Aug 17 at 11:35
Posted a working version; this one is close, though. – Ruben Aug 17 at 11:37
vote up 0 vote down

Try the following. It will simply skip all the null items returned by the query.

var value = (from t in _table
             where t != null
             where t.Id == id
                 && t.Time >= intervalStartTime
                 && t.Time <= intervalEndTime
             select t.Value).Average();

If you want to explicitly treat the null items as zero, then a simple use of the conditional operator should do the job:

var value = (from t in _table
             where t == null ||
                 (t.Id == id
                 && t.Time >= intervalStartTime
                 && t.Time <= intervalEndTime)
             select t == null ? 0 : t.Value).Average();
link|flag
How can t be null, and be between intervalStartTime and intervalEndTime? I think his problem is that there are no records between certain start and end times, not that there are nulls in the table. – Blorgbeard Aug 17 at 10:33
Oh, t.Value vs. t.Time - I see. – Blorgbeard Aug 17 at 10:41
Thanks for the suggestion but still throws the same exception. – Dominic Godin Aug 17 at 10:42
@Dominic: The first example should not through any excepts. I've now updated the second example to fix it (indeed, it was incomplete). – Noldorin Aug 17 at 10:46
Sorry again. Tried them both. They still throw "The null value cannot be assigned to a member with type System.Decimal which is a non-nullable value type.." Exception – Dominic Godin Aug 17 at 11:02
show 1 more comment
vote up 0 vote down

Could you use a temp for the initial query?

E.g:

var temp = (from t in _table
            where t.Id == id
                && t.Time >= intervalStartTime
                && t.Time <= intervalEndTime
            select t.Value) ??  new List<int>() {0};
var value = temp.Average();

Not sure if this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.