The nullable tag is for issues relating to nullable members or types.

learn more… | top users | synonyms (1)

2
votes
1answer
65 views

How do I mark a method as “afterwards, parameter X cannot be null”?

I have this method: @Override public void foo( @Nullable Bar bar ) { Validate.notNull( bar, "bar is null" ); bar.x(); } Since the method is defined elsewhere, I can't mark bar with ...
0
votes
3answers
1k views

VB.NET 3.5; compiler complaining about nullable types (as in Double?) with “error BC30037: Character is not valid.”

Visual studio just started throwing "error BC30037: Character is not valid." at me (while validating a web site) wherever I have use the nullable operator anywhere within one of my VB.NET 3.5 ...
0
votes
2answers
375 views

Generic Nullable Enum

I would like to have a method that will parse from a nullable database column an enum. I wrote this method below (and had to restrict T to a struct to make it compile). It does compile, but I believe ...
2
votes
1answer
111 views

Automatically convert to empty list for null in spring

I want to have all my DAO methods to return an empty collection instead of null. How can I do this with AOP spring?
1
vote
4answers
138 views

Nullable or default value?

What class should I use? public class Category { public int Id {get;set;} public int IdParent {get;set;} public string Title {get;set;} } or public class Category { public int Id ...
0
votes
0answers
62 views

How to get the Type of an object that is a Nullable<Int> when the value is null [duplicate]

Possible Duplicate: .NET : How do you get the Type of a null object? Basically I would like code like one of the following to work without a null reference error: int? i1 = default(int?); ...
8
votes
2answers
237 views

Understanding the null coalescing operator (??)

I have a custom WebControl which implements a .Value getter/setter returning a Nullable<decimal> It's a client-side filtered textbox (a subclass of TextBox with included javascript and some ...
7
votes
5answers
825 views

What is the memory footprint of a Nullable<T>

An int (Int32) has a memory footprint of 4 bytes. But what is the memory footprint of: int? i = null; and : int? i = 3; Is this in general or type dependent?
3
votes
3answers
1k views

Binding a nullable int to an asp:TextBox

I have a property int? MyProperty as a member in my datasource (ObjectDataSource). Can I bind this to a TextBox, like <asp:TextBox ID="MyTextBox" runat="server" Text='<%# Bind("MyProperty") ...
26
votes
3answers
5k 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 implicit ...
65
votes
5answers
41k views

C# nullable string error

private string? typeOfContract { get { return (string?)ViewState["typeOfContract"]; } set { ViewState["typeOfContract"] = value; } } Later in the code I use it like this: typeOfContract = ...
2
votes
3answers
931 views

VB.NET Extension on Nullable(Of T) object, gives type error

The code I want to work: <Extension()> Public Function NValue(Of T)(ByVal value As Nullable(Of T), ByVal DefaultValue As T) As T Return If(value.HasValue, value.Value, DefaultValue) End ...
1
vote
1answer
286 views

Where In clause against nullable field in Linq

How can I write Linq to Entities to make a where in clause similar to one in SQL Server? The issue is that the field I need to search against is nullable int. I have following code, but it returns ...
18
votes
6answers
429 views

Reference types vs Nullable types ToString()

Could someone please be kind enough to explain why calling ToString() on an empty reference type causes an exception (which in my mind makes perfect sense, you cant invoke a method on nothing!) but ...
11
votes
4answers
2k views

MVC 3 doesn't bind nullable long

I made a test website to debug an issue I'm having, and it appears that either I'm passing in the JSON data wrong or MVC just can't bind nullable longs. I'm using the latest MVC 3 release, of course. ...
1
vote
1answer
48 views

Clean way of turning nullable types into reference

I am trying to generalise a solution I've written so that it can be applied across similar problems. I have a number of different objects which all contain nullable doubles. I want to somehow pass ...
7
votes
5answers
3k views

Fluent Nhibernate Automap convention for not-null field

Could some one help, how would I instruct automap to have not-null for a column? public class Paper : Entity { public Paper() { } [DomainSignature] [NotNull, NotEmpty] ...
0
votes
1answer
361 views

How to deserialize Nullable<bool>?

I am trying to deserialize a Nullable<bool> from my XML file. My expectation was that a XMLAttribute which was not found in my XMLElement is null and if it's found it will be trueor false. Same ...
1
vote
1answer
190 views

Query MongoDB using VB.NET - nullable types

The MongoDB C# driver supports queries on Nullable(Of T) according to this Jira ticket: https://jira.mongodb.org/browse/CSHARP-483 However, I am having issues getting it working. ...
1
vote
2answers
2k views

How do I convert a nullable int to a string that will be safe for computers in different locales?

I'm converting a nullable integer to a string, and Resharper warns me to use InvariantCulture. shipment.ShipmentID.ToString() A quick Alt-Enter, Enter later, gives me this: ...
0
votes
1answer
120 views

Code Contracts - Static Checker doesn't get nullable types?

I think I found a bug in the static contract checking tool. Is there a way besides tagging the whole thing with [ContractVerification(false)] ? class Employee { public int? HierarchyLevel { get; ...
1
vote
5answers
758 views

Add to Collection if Not Null

I have a very large object with many nullable-type variables. I also have a dictionary which I want to fill up with this object's non-null variables. The code will look something like this if ...
0
votes
3answers
48 views

A a little bit difference in the operation

class Program { static bool? a = null; static bool b = false; static void Main( string[] args ) { //1 if( a!=null ) { b = (bool) a; ...
0
votes
1answer
324 views

Flex nullable Combobox/Dropdownlist - how to customize it

Ok what I want is quite typical, I am sure alot of Flex developers want it at some point in their life too. Let's take an example: In user profile page, there is a combobox/dropdownlist for "current ...
2
votes
1answer
91 views

Property does not return value from private field

I'm facing a strange behaviour of one of my properties in my MonoTouch-Application. It seems that the given value can not be returned by the Property, but the Debugger in MonoDevelop says that the ...
6
votes
3answers
14k views

Nullable Enum nullable type question

I get the following compilation error with the following source code: Compilation Error: Type of conditional expression cannot be determined because there is no implicit conversion between '' and ...
1
vote
2answers
97 views

Behavior of C# with Nullables

In C# int? a1 = 0; int? a2 = 100; a1 = a1 | default(int?); a2 = a2 | default(int?); Both a1 and a2 turns out to be null. Would be great if someone would explain its working. Update The reason I ...
0
votes
1answer
96 views

Xelement constructor with Ternary Operator and nullable types

I am trying to use linq to xml functional construction to create xml from a bunch of objects: new XAttribute("duration", (m.Media.Type.HasValue && m.Media.Type.Value == MediaType.Image) ? ...
15
votes
5answers
16k views

How to set enum to null

I have an enum string name; public enum Color { Red, Green, Yellow } How to set it to NULL on load. name = ""; Color color = null; //error Edited: My bad, I didn't explain it properly. ...
0
votes
2answers
135 views

Implementing monadic bind for Nullable<> *and* reference types

I have this function: public static U? IfNotNull<T, U>(this T? self, Func<T, U?> func) where T : struct where U : struct { return (self.HasValue) ? func(self.Value) : null; } ...
2
votes
1answer
462 views

Set Nullable property default value to Nothing not working as desired

I have a property which type is Nullable of Integer an default value Nothing as shown below: Property TestId As Integer? = Nothing the following code evaluates the property TestId to Nothing (as ...
1
vote
5answers
133 views

Is a null value in .NET DateTime guaranteed to be less than a real value?

Perhaps my Google-Fu has failed me, but I haven't been able to determine if comparing a nullable in .NET will always be less than something else. I've got some code similar to this MyClass ...
1
vote
0answers
236 views

Doctrine MongoDB ODM nullable=false not working

I'm using the master branch of Doctrine MongoDB ODM and Symfony2 from the git repositories along with mongo extension 1.2.10. I've created a number of classes/documents with annotations similar to: ...
2
votes
2answers
2k views

VB.Net Linq to Entities Null Comparison - 'Is Nothing' or '= Nothing'?

We have several projects in VB.Net, using .Net Framework 4 and Linq to Entities for many of our SQL queries. Moving to EF is a new shift for us (been using it for about 4-6 months) and has the ...
1
vote
3answers
457 views

Using a Nullable<int> Foreign Key in a MS SQL Database Table

I have two tables, for simplicity lets pretend they're defined like this Stack { ID int Primary Key Name varchar(255), not null } User { ID int Primary Key ...
1
vote
3answers
436 views

LINQ Checking for Nulls

How do I check Nulls in Linq? I have a third-party code that returns a DataTable with a column type DateTime that is nullable. My code: var profile = (from d in ds.Tables[0].AsEnumerable() ...
0
votes
2answers
250 views

How Do I Extend a DataRow class

I want to extend the System.Data.DataRow class, so I made the following code (and added the using keyword in my class) namespace MyExtension { public static class DataRowExt { ...
15
votes
5answers
4k views

Ternary operator VB vs C#: why resolves Nothing to zero?

I just shoot myself in the foot and would like to know whether there were actual reasons to make this situation possible. And anyway, this question can stay for the convenience of the future foot ...
4
votes
1answer
245 views

How to correct Generic sort code to sort nullable types

We've been using this method for sorting a generic List<>. Recently, we noticed incorrect results when the target property in T was a nullable type (decimal?). Any ideas how to correct? public ...
1
vote
1answer
35 views

Nullable Type in ATL COM

I am working on the data access in C++ ATL/COM. How do you pass a nullable type (e.g. nullable integer) in an interface???
3
votes
2answers
361 views

How to reduce index scan by avoid scaning null values

I am using SQL Server 2008 R2 and I want to add a non-clustered index on a non-unique, nullable field. My index will also have one more column included in order to avoid accessing my clustered index: ...
2
votes
5answers
90 views

Best way to pass nullable between client-server

Let’s say I have double length that can be either a real length or not ready yet since we got no length yet in the server and there is nothing to send to the client. We need to pass this length from ...
22
votes
3answers
2k 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 ...
5
votes
1answer
360 views

Database Validation Errors. Allow nullable value in one table but not in related (normalized) table [closed]

I have been looking for an answer to this for 2 days now. I'm not even sure exactly what is wrong, but I think I may have pinpointed the possible culprit. My program is a database tracker/manager ...
35
votes
7answers
34k views

How do I use DateTime.TryParse with a Nullable<DateTime>?

I want to use the DateTime.TryParse method to get the datetime value of a string into a Nullable. But when I try this: DateTime? d; bool success = DateTime.TryParse("some date text", out ...
1
vote
1answer
675 views

How to check if ObjectResult collection was empty?

I have this piece of code which check the last customer_id from the db. ObjectResult<int?> last_customer_id_collection = MainForm.eggsContext.ExecuteStoreQuery<int?>("select ...
1
vote
3answers
482 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?, ...
5
votes
3answers
260 views

Why do I lose milliseconds of a DateTime when it's passed to a method which takes Nullable DateTime?

I have a constructor method similar to this: public class Foo { public Foo (DateTime? startFrom) { _startFrom = startFrom; } } And I am calling this constructor method ...
2
votes
3answers
964 views

Why can't I insert DBNull.Value into a nullable image-field in sql server 2005?

Why can't I insert DBNull.Value into a nullable image-field in sql server 2005? I tried this code: SqlConnection conn = new SqlConnection(@"Data Source=.\sqlexpress;Initial ...
8
votes
5answers
12k views

MVC3: Creating checkbox for nullable boolean

My model has a boolean that has to be nullable public bool? Foo { get; set; } so in my Razor cshtml I have @Html.CheckBoxFor(m => m.Foo) except that doesn't work. Neither does casting ...

1 3 4 5 6 7 16