0
votes
5answers
84 views
nullable object must have a value
There is paradox in the exception description:
Nullable object must have a value (?!)
This is the problem:
I have a DateTimeExtended class,
that has
{
DateTime? MyDataTime;
int? otherdata;
}
…
1
vote
4answers
54 views
How to better initialize nullable type from non-nullable?
My objects often has nullable types properties that used as SQL commands parameters.
I initialize them next way:
public int? Amount
{
get
{
int i;
int? amount = null;
if …
4
votes
5answers
132 views
Generics and nullable type
Say I have a method that takes an int as a string and returns the int if the parse succeeds or a null value otherwise.
int? ParseValue(string intAsString)
{
int i;
if …
1
vote
3answers
56 views
Set value to null in WPF binding.
Hello, please take a look at the following line
<TextBox Text="{Binding Price}"/>
This Price property from above is a Decimal? (Nullable decimal).
I want that if user deletes the content of …
1
vote
4answers
67 views
DateTime/bool and Null values in .Net
Utilizing .Net I am inheriting from an older class that has DateTime and bool parameters as part of its constructor. These values are pulled from a SQL database and in the SQL database these values …
6
votes
6answers
223 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 …
5
votes
6answers
257 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
3answers
125 views
C#: Are nullable types (int?) objects?
I understand from this post that value types in C# are not objects. That is, they do not inherit from System.Object.
Assuming my logic holds up to this point, are nullable types, such as int?, …
2
votes
2answers
98 views
Why aren’t F# records allowed to have AllowNullLiteralAttribute?
Is there a compiler implementation reason why records can't have the AllowNullLiteralAttribute attribute or is this a chosen constraint?
I do see this constraint force cleaner code sometimes but not …
0
votes
2answers
30 views
SubSonic - Serializing Classes with Nullable types and collections?
Using SubSonic v2.x: The first issue is the error discussed here:
Server Error in '/......' Application.
Cannot serialize member '.....' of type System.Nullable
I'm not sure where to place the code …
1
vote
6answers
100 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;
…
0
votes
7answers
64 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 …
3
votes
4answers
85 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()
{
…
2
votes
5answers
187 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 …
1
vote
5answers
207 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 …
