David B

14,184
Reputation
704 views

Registered User

Name David B
Member for 1 year
Seen 2 hours ago
Website
Location
Age
10h
revised Confusion over storing a type in a temp variable in a LINQ query
added 666 characters in body
10h
answered Confusion over storing a type in a temp variable in a LINQ query
1d
answered Linq Containsfunction problem
1d
answered How to get unique entries of products in a List<Order> with LINQ
1d
comment A better way to do this LINQ query?
Clarify question: "tighten this up" could mean a lot of things. Do you mean style, performance, or something else?
1d
answered A better way to do this LINQ query?
2d
answered Linq version of SELECT FOR UPDATE
Dec
1
answered WCF Linq to SQL Table - System.Data.Linq.Table cannot be serialized.
Nov
30
accepted SQL Server: How to order by date, if the date is < GetDate()
Nov
30
answered SQL Server: How to order by date, if the date is < GetDate()
Nov
29
comment How to get the maximum of more than 2 numbers in Visual C#?
@Jason Williams - Concat doesn't allocate an array and so is just as good as this solution.
Nov
24
accepted Why or how to use NUnit methods with ICollection<T>
Nov
24
answered Why or how to use NUnit methods with ICollection<T>
Nov
23
comment How to take all but the last element in a sequence using LINQ?
I like it, and it does meet the criteria of not generating the sequence twice.
Nov
20
awarded  Nice Question
Nov
19
comment Biggest performance improvement you’ve had with the smallest change?
@Carl, that's not equivalent. Consider a person with no absences.
Nov
18
revised Linq Query Returns Incorrect Result Set
added 531 characters in body
Nov
18
answered Linq grouping by nullable datetime and using this as criteria
Nov
18
answered Linq Query Returns Incorrect Result Set
Nov
14
answered Which name for a “smart” dictionary (hashtable) ?
Nov
12
answered Differences between LINQ to Objects and LINQ to SQL queries
Nov
12
comment Differences between LINQ to Objects and LINQ to SQL queries
Yes, LinqToSql also coalesces nulls.
Nov
12
answered c# “like/contains” search through a list
Nov
12
accepted How do you force linq to sql to use the correct data type for sql parameters?
Nov
11
revised How do you force linq to sql to use the correct data type for sql parameters?
added 700 characters in body
Nov
11
answered How do you force linq to sql to use the correct data type for sql parameters?
Nov
10
comment Proper way to handle ‘optional’ where clause filters in SQL?
You have a non-conditional SARG-able filtering criteria.. so yes you do dodge a table scan. Original question asker doesn't know SARG and will wind up with table scans if he follows your advice.
Nov
10
comment Proper way to handle ‘optional’ where clause filters in SQL?
If you have multiple optional parameters, odds are that only a few are significant for the query plan... just branch on those. As for parameter sniffing: sqlblog.com/blogs/ben_nevarez/… Good luck with this approach though.
Nov
10
comment Saying “C & C# are equal by functionality, but not by concept”
+1, nod... I don't see any OS written in C# any time soon. Must be some reason...
Nov
10
answered Proper way to handle ‘optional’ where clause filters in SQL?
Nov
10
comment Proper way to handle ‘optional’ where clause filters in SQL?
First query reads whole table. This is not a good way to minimize IO.
Nov
10
answered Table Variables: Is There a Cleaner Way?
Nov
9
comment How to correctly add Action and Func<> delegate types to C#2.0?
There is no C# 3.5 - Action and Func<> are types in .Net 3.5 framework. C# 3.0 has some syntax (such as var and lambdas) to aid in the usage of these types.
Nov
9
answered How do you explain closure to a 5 year old?
Nov
7
awarded  Enlightened
Nov
5
answered How do I get a list of column name using Linq to Sql
Nov
5
answered Get the symmetric difference from generic lists
Nov
5
answered Disable “Foo has encountered a problem and needs to close” window
Nov
4
answered In LINQ to SQL, how do you determine what column elements is a sub-set of another column (i.e. Like-Sql statement)
Nov
4
answered How can I split a generic List (of T) based on a property of a list member?
Nov
4
comment How can I split a generic List (of T) based on a property of a list member?
Won't this throw if there are no items with ValueA?
Nov
4
answered How can I split a generic List (of T) based on a property of a list member?
Nov
4
revised is there something faster than “having count” for large tables?
deleted 3 characters in body
Nov
4
comment SQL DateTimes From C# Linq to Stored Procedure
"the problem" : what exception do you get?
Nov
3
comment When and why are database joins expensive?
An epic post, thanks for posting this.
Nov
2
answered Can’t add value to List in C#
Nov
2
answered use linq aggregate function to build xml string?
Oct
31
comment Generic TryParse Extension method
And, you could get the client to pass you the parser (as a Func<T, U> if nothing else), instead of the type - that would avoid the reflection.
Oct
31
comment Generic TryParse Extension method
Rethrowing link msdn.microsoft.com/en-us/library/…
Oct
31
answered How to recover from System.Data.Linq.DuplicateKeyException without disposing DataContext?