0
votes
7answers
53 views
testing inequality with columns that can be null
So, I asked a question this morning, which I did not phrase correctly, so I got a lot of responses as to why NULL compared to anything will give NULL/FALSE.
My actual question was, what is the time …
4
votes
6answers
243 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 …
1
vote
6answers
82 views
How can I format a nullable DateTime with ToString()?
How can I convert the nullable DateTime dt2 to a formatted string?
DateTime dt = DateTime.Now;
Console.WriteLine(dt.ToString("yyyy-MM-dd hh:mm:ss")); //works
DateTime? dt2 = DateTime.Now;
…
6
votes
6answers
191 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 …
0
votes
0answers
11 views
NHibernate FutureValue and nullable types
I am having trouble using NHibernate's FutureValue method and nullable types. Is this a deficiency of NHibernate, or is the bug on my end? I can't think of a good work around.
This is the query I am …
1
vote
2answers
18 views
Linq: transform memberExpression type to not nullable
the following member expression type can sometimes be NUllable, I m checking that , however I need to convert it to a non nullable type ,
MemberExpression member = Expression.Property(param, …
3
votes
4answers
81 views
Is it possible to enforce that a type param is nullable on a class
given a class definition like:
public class Test<T>
{
T _value;
public void Test(T value)
{
_value = value;
}
public void DoStuff()
{
…
1
vote
1answer
37 views
Can’t Deserialize a Nullable KeyValuePair from JSON with ASP.NET AJAX
The following class does not deserialize (but does serialize) using System.Web.Script.Serialization.JavaScriptSerializer.
public class foo {
public KeyValuePair<string, string>? bar …
2
votes
5answers
179 views
Is it possible to use operator ?? and throw new Exception() ?
I have a number of methods doing next:
var result = command.ExecuteScalar() as Int32?;
if(result.HasValue)
{
return result.Value;
}
else
{
throw new Exception(); // just an example, in my code …
0
votes
2answers
43 views
Linq grouping by nullable datetime and using this as criteria
I am struggling with a nullable datetime column [DateInsp] in an ASP.NET app which uses SubSonic3, Linq, MS SQL Server 2005.
I had this all working when the datetime column [DateInsp] did not allow …
1
vote
5answers
181 views
Scala: Something like Option (Some, None) but with three states: Some, None, Unknown
I need to return values, and when someone asks for a value, tell them one of three things:
Here is the value
There is no value
We have no information on this value (unknown)
case 2 is subtly …
1
vote
7answers
123 views
C# DBNull and nullable Types - cleanest form of conversion
I have a DataTable, which has a number of columns. Some of those columns are nullable.
DataTable dt; // Value set.
DataRow dr; // Value set.
// dr["A"] is populated from T-SQL column defined …
1
vote
2answers
91 views
C#: passing nullable variable to method that only accepts nonnull vars
I have code that is similar to this:
public xyz (int? a)
{
if (a.HasValue)
{
// here DoSomething has parameters like DoSomething(int x)
blah = DoSomething(a);
I am getting the error …
1
vote
1answer
45 views
Populating an Object from the DB — Where do you stop?
When getting an object from the DB, should the object's properties also be loaded? There seems to be these approaches.
Create well-formed, fully-loaded objects.
Pro: No need to check if a property …
0
votes
4answers
53 views
Parsing boolean from configuration section in web.config
Hello, I have a custom configuration section in my web.config.
One of my classes is grabbing from this:
<myConfigSection LabelVisible="" TitleVisible="true"/>
I have things working for …
