Search Results

2
votes
5answers
225 views

Handling null results with the Linq Average() method

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 a …
1
vote
3answers
91 views

Grouping by Time ranges in Linq

I've been getting stuck into some linq queries for the first time today and I'm struggling with some of the more complicated ones. I'm building a query to extract data from a table to build a grap …
1
vote
1answer
54 views

Linq: Looking for an efficient way to search a column to see if it contains any word from a list of words.

I have a Linq query that will search a column for a word and return the number of entries found with the said word. I then loop this for each word I'm looking for. var results = ne …
0
votes
2answers
42 views

LINQ: Prefetching data from a second table

Hi, I'm trying to pre-fetch some foreign key data using a linq query. A quick example to explain my problem follows: var results = (from c in _customers from …