Tagged Questions
The non-nullable tag has no wiki summary.
109
votes
10answers
29k views
Best explanation for Languages without Null
Every so often when programmers are bitching about null errors/exceptions someone asks what we do without null.
I myself have some basic idea of the coolness of option types but I don't have the ...
18
votes
2answers
702 views
How can I get close to non-nullable types in C# today?
I've read many of the non-nullable questions and answers. It looks like the best way to get close to non-nullable types in C# (4.0) is Jon Skeet's NonNullable<> hack.
However, it seems that ...
14
votes
5answers
402 views
Why am I allowed to compare a non-nullable type with null? [closed]
Possible Duplicate:
C# okay with comparing value types to null
If I try to assign null to a non-nullable type in C#:
System.DateTime time = null;
I'll get a compile-time error:
error ...
13
votes
11answers
532 views
What would we do without NULL?
I once read that having nullable types is an absolute evil. I believe it was in an article written by the very person who created them(in Ada?) I believe this is the article
Anyway, so what if by ...
10
votes
5answers
4k views
Why is null not allowed for DateTime in C#?
Why it is not allowed to assign null to a DateTime in C#? How has this been implemented? And can this feature be used to make your own classes non-nullable?
Example:
string stringTest = null; // ...
8
votes
2answers
319 views
Create Non-Nullable Type in c#
How to create non-nullable types like int, bool, etc. in c#?
Edit:How to Create Non-Nullable Reference Type? Is there any way?
8
votes
6answers
1k 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 ...
7
votes
6answers
373 views
When does using C# structs (value types) sacrifice performance?
I have been playing with structs as a mechanism to implicitly validate complex value objects, as well as generic structs around more complex classes to ensure valid values. I am a little ignorant as ...
6
votes
9answers
834 views
About the non-nullable types debate
I keep hearing people talk about how non-nullable reference types would solve so many bugs and make programming so much easier. Even the creator of null calls it his billion dollar mistake, and Spec# ...
6
votes
4answers
6k views
Making a Non-nullable value type nullable
I have a simple struct that has limited use. The struct is created in a method that calls the data from the database. If there is no data returned from the database I want to be able to return a null, ...
4
votes
1answer
117 views
Non-nullable reference types (yet again)
There have been many questions around support for non-nullable reference types in .NET. The great hope was code contracts, but it is limited to runtime checking for those who have limited budget.
As ...
4
votes
7answers
1k views
Non-nullable reference types
I'm designing a language, and I'm wondering if it's reasonable to make reference types non-nullable by default, and use "?" for nullable value and reference types. Are there any problems with this? ...
3
votes
4answers
133 views
Is there a standard Java NonNullable<T> generic, and if not, why not?
The problem with annotations such as @NotNull/@NonNull is that they aren't enforced at runtime. I want to do something like the following:
class Foo {
String nullable_string;
final ...
3
votes
1answer
361 views
Whats wrong with non nullable objects?
I have been looking at DbC lately and Spec# which seem to have support for non nullable objects. Unfortunately Spec# seem to have been abandoned.
Spec# seemed to have lots of nice language features ...
2
votes
4answers
43 views
Cannot specify a culture in string conversion explicitly when converting nullable decimal (decimal?) to string
I have a property:
public decimal? DejanskaKolicina { get; set; }
and Resharper shows me:
specify a culture in string conversion explicitly
But if I use:
...
2
votes
1answer
58 views
Automatic conversion of wrapper in C#
I've build wrapper-class intended to prevent reference types of being null, as a pre-condition code contract.
public sealed class NotNullable<T>
where T : class
{
private T t;
...
2
votes
1answer
259 views
Type Inference failed in a call to 'join' on nullable and non-nullable int
In my Linq, I am trying to make an inner join to a nullable field. Employee and Department have a relation, Department may have an EmployeeID or may have a null. So what would be my join, if i want ...
1
vote
2answers
88 views
Can I force an expression to be used with a non-nullable parameter?
I'm not sure how to explain this, so I'm gonna show you some code first and explain what it does.
Extension Filter: receives a parameter expression and a special type of filter I've built for my ...
1
vote
2answers
338 views
Make a column nullable DB2
I'm using db2 version 9.7* and it seems impossible to make a NOT NULL column nullable in any straightforward way.
Unfortunately the solution of using a more developer friendly database is not ...
1
vote
6answers
261 views
Value of unassigned non-nullable variable (C#)
Just curious.
If you go:
string myString;
Its value is null.
But if you go:
int myInt;
What is the value of this variable in C#?
Thanks
David
0
votes
1answer
199 views
EF4 mapping nullable decimal column to non-nullable value property
I am using POCOs (no proxies) with EF4.
In the database, I have this nullable decimal column:
<Property Name="AMOUNT" Type="decimal" Precision="12" Scale="2" />
On my POCO, I have this ...
0
votes
3answers
31 views
Representing search failure with a non-nullable type
I have a method that searches a list of objects based on some of the fields of the object. If a matching object is found, I return it, but I want to be able to represent a no-match situation. Normally ...
0
votes
3answers
646 views
How to make computed column not nullable?
So far I've been using ISNULL(dbo.fn_GetPrice(ItemId), 0) to make it not nullable (rather call it default-valued, but whatever).
Is this the right way?
0
votes
3answers
755 views
How can I run a query on a dataset that returns different columns to the table?
I'm trying to pull some data from a SQL table in my dataset using C#.
In this case I do not need all the columns just a few specific ones, however as I am not pulling back a column with a mandatory ...