Search Results

5
votes
2answers
157 views

How do I create a thread that runs all the time in the background in a .net web site?

I intend to build a small web site that will poll a third party web service, say every 15 minutes, store the collected data in a db and display the results via web pages. I want the polli …
2
votes
5answers
217 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
88 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
51 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
3answers
51 views

How do I add an XML attribute using DataContract

Hi I have a simple class I'm serializing. [DataContract(Name = "Test", Namespace = "")] public class Test { [DataMember(Order = 0, Name = "Text")] public string T …
2
votes

How to serialize on to existing file?

This is indeed possible. The code below appends the object. using (var fileStream = new FileStream("C:\file.dat", FileMode.Append)) { var bFormatter = new BinaryFormatter(); …