The nullable tag is for issues relating to nullable members or types.
0
votes
0answers
25 views
dataset does not support system.nullable in crystal reports
I have this view in my database:
SELECT dbo.Donators.Name, DonatorId, Year, isnull([1], 0) AS January, isnull([2], 0) AS February, isnull([3], 0) AS March, isnull([4], 0) AS April, isnull([5], 0) AS ...
4
votes
1answer
78 views
Ambiguous invocation match confusion
The following code throws "Ambiguous invocation match" at compile time:
class ABC{}
class DEF{}
class Program
{
static void Main(string[] args)
{
Debug.WriteLine(func(null));
}
...
2
votes
4answers
50 views
Nullable bool or bool with default value in action?
Perhaps a small question but im curious.
What is favored?
In a controllers action, when passing arguments, when and how should they be used?
public ActionResult Action(bool aBool = false)
or
...
0
votes
1answer
13 views
EclipseLink nullable column but unique
is it possible to define a column with EclipseLink, which can be null but if a value != null exists, there should only be unique values within the column. How I can model that?
Thank you
Andre
1
vote
1answer
52 views
Petapoco issue with nullable SQl Server smallint and int16 in vb.net
I have an SQL Server table with a view and a smallint field. All data in the view are automatically marked as nullable from Petapoco T4 generator since you can't specifiy it in a view.
I'm fine with ...
0
votes
1answer
25 views
Compilation error: Default nullness annotation has not been specified
Platform: Windows
Eclipse Version: http://download.eclipse.org/eclipse/downloads/drops4/S-4.3M7-201305020800/
Test Case:
public class Test {
}
Error: A default nullness annotation has not been ...
3
votes
5answers
252 views
Nullable properties vs. Nullable local variables
I am puzzled by the following behavior of Nullable types:
class TestClass {
public int? value = 0;
}
TestClass test = new TestClass();
Now, Nullable.GetUnderlyingType(test.value) returns the ...
4
votes
3answers
105 views
Convert decimal? to double?
I am wondering what would be the best way (in the sense of safer and succinct) to convert from one nullable type to another "compatible" nullable type.
Specifically, converting from decimal? to ...
1
vote
2answers
48 views
How to Bind a nullable bool in VM to RadRadioButton
I am struggling with how I go about this? In my VM I have a nullable bool property that I want to bind to a Yes/No(true/false) RadRadioButton. Can someone point me in the right direction?
VM
...
1
vote
1answer
42 views
Nullable datetime to datetime converter automapper
I have a situation where my DTOs require DateTime properties but my POCOs use nullable datetimes. To avoid having to create ForMember mappings for every property with this condition I created an ...
3
votes
4answers
146 views
Specified Cast is not valid when DataBind to Nullable DateTimeOffset and field is NULL
I've created a simple CompositeControl and exposed a Nullable DateTimeOffset property.
I'm binding the control to a SQL Server DateTimeOffset field using
DateTimeOffset='<%# ...
0
votes
2answers
35 views
How is nullable type implemented by .NET? [duplicate]
How is nullable type implemented by .NET ?
Nullable<int> x = 5;
int? x = 5;
0
votes
2answers
41 views
Nullable problems with Activator.CreateInstance and Convert.ChangeType
I have a third party library which sets a given objects property using reflection as follows. (This is the simplified version)
public void Set(object obj, string prop, object value) {
var propInf ...
4
votes
4answers
149 views
Optional return in C#.Net
Java 1.8 is receiving the Optional class, that allows us to explicitly say when a method may return a null value and "force" its consumer to verify if it is not null (isPresent()) before using it.
I ...
0
votes
1answer
23 views
Apply parameter's nullability to return value
I have a method that is declared to both accept and return null.
@CheckForNull
public static String truncate(@CheckForNull text, int maxLength) { ... }
It returns null only if text is null. When I ...
0
votes
4answers
45 views
Writing Nullable value with BinaryWriter [duplicate]
I want to write a nullable string to file using BinaryWriter and this code:
BinaryWriter writer = new BinaryWriter(st);
String? s;
if(s!=null){
writer.Write(s);
}
but this error ...
0
votes
1answer
119 views
Oracle nullable and non nullable column in a view
I have a table in Oracle. This table has amongst others: EMPLOYEE_ID (NUMBER, Nullable, but number of NULLs is 0) and EMPLOYEE_NUMBER (VARCHAR2, Nullable, but number of NULLs is 0).
Now I create a ...
1
vote
3answers
36 views
Strange CLR error while handling Nullable types in Oxygene .net
I'm writing a program in Oxygene .net
There seems to be a problem with how I am handling nullable types
namespace RULER;
interface
uses
System,
System.Drawing,
System.Collections,
...
-1
votes
2answers
90 views
C# Nullable arrays
I have a search function, but I would like LocationID to be an array of integers rather than just a single integer. I'm not sure how to do this since I want it to also be nullable. I've looked at ...
6
votes
2answers
113 views
Casting struct to object for null comparison isn't causing boxing?
I came across this while doing some benchmarking.
bool b;
MyStruct s;
for (int i = 0; i < 10000000; i++)
{
b = (object)s == null;
}
Debug: 200 ms
Release: 5 ms
bool b;
MyStruct? ...
0
votes
1answer
35 views
Telerik OpenAccess:Can a “NullAble” enum type property be mapped?
I am a beginner of OpenAccess.I am writing some test code according to my experience of "Linq to Sql"
I try to map a allow null int field to "NullAble" enum type property, but fail.
In the Visual ...
0
votes
0answers
27 views
@Nullable doesn't seem to work with @AssistedInject
I have a constructor that looks like this:
@Inject
public MyClass(
@Named("config") String configFile,
@Named("template") String templateFile,
CachedSettings settings,
...
0
votes
0answers
47 views
Read/Write a Nullable Type using BinaryReader?
I am overloading the System.IO BinaryReader to serialize some classes for file storage purposes. I have had no issues doing items like dictionaries and such, but have not been successful with a ...
2
votes
3answers
80 views
Pass nullable argument to a method
This my current method but from time to time I have to deal with this problem and I want to know if there is more elegant way.
I have : long? LoadEntityId field. I have a method where I use this as ...
1
vote
1answer
41 views
WPF Toolkit Propertybox does not display nullable Enums
I'm currently using the Extended WPF Toolkit and from that i'm using the Propertybox. This box displays all properties of a bound element. While this works great, there is one problem. I'm using ...
0
votes
2answers
50 views
How does comparison operator works with null int?
I am starting to learn nullable types and ran into following behavior.
While trying nullable int, i see comparison operator gives me unexpected result. For example, In my code below, The output i get ...
0
votes
1answer
30 views
How to define byte? null parameter
How to create null byte?
This is what I do
byte? nb = null;
methodCall (rdr.IsDBNull(15) ? nb : rdr.GetByte(15));
This does not even complile.
What is the proper syntax?
methodCall ...
0
votes
2answers
61 views
C++ Nullable/optionable integer to be used with vectors
I am using NDK on Android, I was hoping get something similar to a List on Java, where elements can be null values. I know in C++ null is different to Java, so I am after where having a value for the ...
1
vote
3answers
68 views
Generic typed function: return a non-nullable value
I wrote this trivial utility function:
public static T isNull<T>(T? v, T d)
{
return v == null ? d : v.Value;
}
the purpose is to avoid annoying task like check for a member to be null, ...
3
votes
1answer
94 views
Best practices for deserializing nullable types
I want to deserialize the following xml:
<Root>
<Order>
<Id>12</Id>
<Date>2013-03-28T16:12:45</Date>
<Number></Number>
...
0
votes
0answers
20 views
How to check type of unboxing nullable type with value = null?
Look at this method:
Dictionary<string,object> ViewModelParams = new Dictionary<string,object>();
AddParam(string paramKey,value)
{
viewModelParams.Add(paramKey,value);
}
T ...
4
votes
1answer
97 views
Create non-NULL computed column for constant CHAR(1) in SSMS
In my database I have some computed columns to help ensure referential integrity constraints. I use computed columns and not default-value columns because LINQ2SQL, which is what I use, does not ...
0
votes
2answers
42 views
How to cast nullable type of a parameter on a linq2sql join statement
somehow I cant figure out how to cast the type of linq paramter within the ON-part of the statement. the statement will lead to the following error:
Error 1 The type of one of the expressions in ...
0
votes
0answers
7 views
rails convert nullable time? to time
I am attempting a database seed that requires me to add times. The rake fails with the error
time + time?
I presume from other programming languages that I need to do something like (where t is ...
1
vote
2answers
82 views
Cannot make @ManyToOne relationship nullable
I have a many-to-one relationship that I want to be nullable:
@ManyToOne(optional = true)
@JoinColumn(name = "customer_id", nullable = true)
private Customer customer;
Unfortunately, JPA keeps ...
6
votes
2answers
84 views
Why the following Conditional Operator works strangely in StringBuilder containing Nullable type? in C#?
StringBuilder htmlResp=new StringBuilder();
int? cuID= 1;
string cuName="Tom";
string cuEmpID="ZXCV";
htmlResp .Append( "<option value=\"" + cuID.Value + "\">" + cuName+" ("+cuEmpID==""? ...
1
vote
2answers
53 views
List<Int16>? as an method parameter
Error message cannot have non-nullable parameter
How can I pass a List? to a method?
public int RegexAutoCode(int sID, List<Int16>? valueIDs, string text, SqlCommand cmd)
0
votes
1answer
63 views
Is CTime nullable?
In a MFC application I like to map SQL date values (CDBVariant) to MFC CTime. Because the database entries can be NULL (value does not exist), I wonder if CTime is nullable. The remark in the MFC ...
0
votes
3answers
100 views
won't accept a null object in C#
When I run my code it tells me that the object of adr is null, and thats true, but why wont it work when it works in a duplicate of the same method, with the exeption of insert instead of select.
the ...
0
votes
2answers
59 views
ambiguous call between functions error
I got this question in a interview, now i know i gave wrong answer.
Why is this program showing ambiguous call between functions and therefore not compiling?
public static void Display(int? num) {
...
0
votes
0answers
126 views
How can I implement an editor template for a Nullable<bool>?
I am trying to implement an editor template as a tri-state checkbox. This seems quite easy. A null boolean will always result in an unchecked standard checkbox, so my thoughts were to ensure a false ...
0
votes
0answers
22 views
What function signature is necessary to accept a nullable datetime2 value in an SQL CLR function?
The CLR SqlDateTime type maps to the sql 'datetime' type, so it's imprecise and useless.
The CLR DateTime type has the same precision as the sql 'datetime2' type, which is what I want, but unlike ...
0
votes
2answers
59 views
Optional Input Values in SUP Personalization Parameters(iOS)
I am creating an iPhone application with SUP. I am using SAP as my datasource.In my MBO s I created some personalization parameters not any synchronization parameters.Some of them are optional ...
-3
votes
4answers
146 views
nullable string in C#
I know a string in C# can be 'nullable' by just using null.
However, the whole point of nullable types is that I get help from the compiler [edit : aka, type error : can't add apple to bananas]
And ...
4
votes
1answer
217 views
How will a C# switch statement's default label handle a nullable enum?
How will a C# switch statement's default label handle a nullable enum?
Will the default label catch nulls and any unhandled cases?
1
vote
1answer
72 views
Converting to Nullable Type without extra method
Is writing something like this kosher? Or are there problems that may arise?
private DateTime? getDate(object date)
{
return date != null ? Convert.ToDateTime(date) : (DateTime?)null;
}
I've ...
0
votes
0answers
15 views
Need Advice on DBContext Generator
I've been working on a DLL library using Entity Framework 4 and DBContext Generator - Database first approach. I found out that there's no validation for the fields when using Database First approach. ...
1
vote
1answer
142 views
Get PropertyType.Name in reflection from Nullable type
I want use reflection for get properties type.
this is my code
var properties = type.GetProperties();
foreach (var propertyInfo in properties)
{
model.ModelProperties.Add(
...
0
votes
1answer
109 views
nullable datetimes and null dates still display as 1/1/0001 [closed]
In my jqGrid, I want to have empty values in my grid...
Instead I am getting 1/1/0001
my model types for the dateTime are all nullable.
Am I missing something???
this is the code...
public ...
0
votes
3answers
131 views
A generic function to accept both reference types and nullable types to accomodate the “as” keyword possible?
This is pure curiosity/challenge, no practical importance at all. So I'm not looking for alternate solutions that get the job done.
From this question Most efficient way to check for DBNull and then ...



