Tagged Questions

2
votes
2answers
84 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 …
1
vote
3answers
111 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?, …
6
votes
6answers
211 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
250 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 …
0
votes
7answers
57 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 …
1
vote
6answers
85 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
0answers
12 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
1answer
39 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 …
1
vote
2answers
22 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() { …
0
votes
2answers
70 views

How to use SqlBulkCopy with nullable columns

I’m having an issue using SqlBulkCopy when nullable columns are involved. It sounds like SqlBulkCopy doesn't know how to deal with nullable columns and throws an illegal size error when it encounters …
0
votes
3answers
222 views

WPF : Nullable ComboBox

I want to have an empty item in the comboBox to allow the user to "Unselect" and keep the comboBox empty (Null value). How can I do that?
2
votes
5answers
184 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
49 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
184 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 2 3 4 5 9 next
15 30 50 per page