14
votes
9answers
1k views
Get null == null in SQL
I wish to search a database table on a nullable column. Sometimes the value I'm search for is itself NULL. Since Null is equal to nothing, even NULL, saying
where MYCOLUMN=SEARCHVALUE
will fail. …
12
votes
4answers
2k views
Why is this code invalid in C#?
The following code will not compile:
string foo = "bar";
Object o = foo == null ? DBNull.Value : foo;
I get: Error 1 Type of conditional expression cannot be determined because there is no …
12
votes
7answers
4k views
C#: Is there any difference between bool? and Nullable<bool> ?
In C# are the nullable primitive types (i.e. bool?) just aliases for their corresponding Nullable<T> type or is there a difference between the two?
10
votes
5answers
604 views
Why do nullable bools not allow if(nullable) but do allow if(nullable == true)?
This code compiles:
static void Main(string[] args)
{
bool? fred = true;
if (fred == true)
{
Console.WriteLine("fred is true");
}
else if …
9
votes
5answers
4k views
C# ADO.NET: nulls and DbNull — is there more efficient syntax?
I've got a DateTime? that I'm trying to insert into a field using a DbParameter. I'm creating the parameter like so:
DbParameter datePrm = updateStmt.CreateParameter();
datePrm.ParameterName = …
9
votes
9answers
4k views
How to parse a string into a nullable int in C# (.NET 3.5)
I'm wanting to parse a string into a nullable int in C#. ie. I want to get back either the int value of the string or null if it can't be parsed.
I was kind of hoping that this would work
int? val …
8
votes
4answers
467 views
Nullable type is not a nullable type?
I was doing some testing with nullable types, and it didn't work quite as I expected:
int? testInt = 0;
Type nullableType = typeof(int?);
Assert.AreEqual(nullableType, testInt.GetType()); // not the …
8
votes
4answers
1k views
How to check if an object is nullable?
Hi,
How do I check if a given object is nullable in other words how to implement the following method...
bool IsNullableValueType(object o)
{
...
}
EDIT: I am looking for nullable value types. …
7
votes
5answers
477 views
Alternatives to nullable types in C#
I am writing algorithms that work on series of numeric data, where sometimes, a value in the series needs to be null. However, because this application is performance critical, I have avoided the use …
6
votes
6answers
220 views
Should References in Object-Oriented Programming Languages be Non-Nullable by Default?
Null pointers have been described as the "billion dollar mistake". Some languages have reference types which can't be assigned the null value.
I wonder if in designing a new object-oriented language …
6
votes
4answers
286 views
Boxing / Unboxing Nullable Types - Why this implementation ?
Extract from CLR via C# on Boxing / Unboxing value types ...
On Boxing: If the nullable instance is not null, the CLR takes the value out of the nullable instance and boxes it. In other words a …
6
votes
6answers
749 views
Why shouldn’t I always use nullable types in C#.
I've been searching for some good guidance on this since the concept was introduced in .net 2.0.
Why would I ever want to use non-nullable data types in c#? (A better question is why wouldn't I …
6
votes
5answers
1k views
In C# why can’t a conditional operator implicitly cast to a nullable type
I am curious as to why an implicit cast fails in...
int? someValue = SomeCondition ? ResultOfSomeCalc() : null;
and why I have to perform an explicit cast instead
int? someValue = SomeCondition ? …
6
votes
4answers
712 views
Conditional operator assignment with nullable<value> types?
EmployeeNumber =
string.IsNullOrEmpty(employeeNumberTextBox.Text)
? null
: Convert.ToInt32(employeeNumberTextBox.Text),
I often find myself wanting to do things like this (EmployeeNumber is …
5
votes
6answers
256 views
why is null not equal to null false
I was reading this article:
http://stackoverflow.com/questions/191640/get-null-null-in-sql
And the consensus is that when trying to test equality between two (nullable) sql columns, the right …
