active questions tagged nullable - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T06:24:02Zhttp://stackoverflow.com/feeds/tag/nullablehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1904015/how-to-better-initialize-nullable-type-from-non-nullable1How to better initialize nullable type from non-nullable?abatishchev2009-12-14T22:38:55Z2009-12-15T09:42:01Z
<p>My objects often has nullable types properties that used as SQL commands parameters.</p>
<p>I initialize them next way:</p>
<pre><code>public int? Amount
{
get
{
int i;
int? amount = null;
if (Int32.TryParse(Request["amount"], out i))
{
amount = i;
}
return amount;
}
}
command.Parameters.Add("@amount").Value = (object)this.Amount ?? DbNull.Value;
</code></pre>
<p>How can I rewrite such initialization code to make it shorter <s>or faster</s>?</p>
http://stackoverflow.com/questions/1895453/set-value-to-null-in-wpf-binding1Set value to null in WPF binding.Shimmy2009-12-13T03:15:10Z2009-12-13T14:58:30Z
<p>Hello, please take a look at the following line</p>
<pre><code><TextBox Text="{Binding Price}"/>
</code></pre>
<p>This Price property from above is a <code>Decimal?</code> (Nullable decimal).</p>
<p>I want that if user deletes the content of the textbox (i.e. enters empty string, it should automatcally update source with null (Nothing in VB).</p>
<p>Any ideas on how I can do it 'Xamly'?</p>
http://stackoverflow.com/questions/1896185/nullable-object-must-have-a-value0nullable object must have a valueDani2009-12-13T11:08:19Z2009-12-13T11:24:09Z
<p>There is paradox in the exception description:
Nullable object must have a value (?!)</p>
<p>This is the problem:</p>
<p>I have a DateTimeExtended class,
that has </p>
<pre><code>{
DateTime? MyDataTime;
int? otherdata;
}
</code></pre>
<p>and a constructor</p>
<pre><code>DateTimeExtended(DateTimeExtended myNewDT)
{
this.MyDateTime = myNewDT.MyDateTime;
this.otherdata = myNewDT.otherdata;
}
</code></pre>
<p>running this code\</p>
<pre><code>DateTimeExtended res = new DateTimeExtended(oldDTE);
</code></pre>
<p>throws an InvalidOperationException with the message:</p>
<p>Nullable object must have a value.</p>
<p>myNewDT.MyDateTime.Value - is valid and contain a regulare DateTime object.</p>
<p>What is the meaning of this message and what am I doing wrong ?</p>
<p><strong>* EDIT: oldDTE is NOT NULL I've removed the Value from myNewDT.MyDateTime but same exception thrown.**</strong></p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1878712/generics-and-nullable-type4Generics and nullable typePhillip Ngan2009-12-10T04:55:34Z2009-12-10T17:27:52Z
<p>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.</p>
<pre><code> int? ParseValue(string intAsString)
{
int i;
if (int.TryParse(intAsString, out i))
return i;
return null;
}
</code></pre>
<p>How can this method be re-written so that it works not only with int?, but also long?, decimal? and DateTime? ? </p>
http://stackoverflow.com/questions/1878059/subsonic-serializing-classes-with-nullable-types-and-collections0SubSonic - Serializing Classes with Nullable types and collections?ElHaix2009-12-10T01:14:09Z2009-12-10T06:22:18Z
<p>Using SubSonic v2.x: The first issue is the error discussed <a href="http://stackoverflow.com/questions/978949/nullable-types-break-toxml-in-subsonic-2-2">here</a>:</p>
<p>Server Error in '/......' Application.
Cannot serialize member '.....' of type System.Nullable</p>
<p>I'm not sure where to place the code in my DAL from this post to get this working. I tried placing it in one of the partial classes I created for a table, but no go.</p>
<p>Another fix for this is to add:</p>
<p>generateNullableProperties="false"</p>
<p>However this isn't an option in the intelisense in my providers section of my subsonic config for my DAL. (It is supposed to go on the DAL config or the app's config?)</p>
<p>I managed to get around this</p>
<p>[XmlElement(Type = typeof(TblReceiptLineItem))]</p>
<p>to the following code:</p>
<pre><code>public partial class TblReceipt
{
// no need to override any existing methods or properties as we
// are simply adding one
//[XmlElement]
// specifying the types of objects to be contained within the arraylist
[XmlElement(Type = typeof(TblReceiptLineItem))]
public ArrayList ReceiptLineItemsArr = new ArrayList();
public string UserPhoneNumber;
public string UserCardNumber;
}
</code></pre>
<p>... and only because I changed a nullable field in TblReceiptLineItem to not nullable.</p>
<p>However, now the error is:</p>
<p>Unable to cast object of type 'System.Collections.ArrayList' to type 'DAL.TblReceiptLineItem'.</p>
<p>So I'm thinking it hasn't even gotten to the Nullable type error yet and not liking the cast.</p>
<p><strong>So what is the best way to serialize an object that contains a collection with 1..* elements of a custom type (that is SubSonic-friendly).
And what is the best way to de-serialize this data?</strong></p>
<p>The second (not yet) issue, is I have an object with a collection of objects in one of its members. Do I have to serialized the collection within the object before serializing the entire object, or will the XmlSerializer take care of all of this?</p>
<p>Thank you.</p>
<p><strong>== UPDATE ==</strong></p>
<p>So it looks like the problem was actually solved with my little fix above. I had some other erroneous code that was causing the second error.</p>
<p>However, my code now fully serializes the main object with the array list of objects inside.</p>
<p>So the fix was to add the type before declaration: </p>
<p>[XmlElement(Type = typeof(TblReceiptLineItem))]</p>
<p>However better ways of accomplishing this (or others) are welcome.</p>
http://stackoverflow.com/questions/1877226/datetime-bool-and-null-values-in-net1DateTime/bool and Null values in .NetJay2009-12-09T22:03:06Z2009-12-09T22:17:29Z
<p>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 can be null. When I populate my class and call the base constructor this fails because DateTime and bool cannot have null values in .Net.</p>
<p>I am aware of Nullable types (DateTime? etc.) and I can define my custom classes to utilize them and hold the null values but I have not been able to come up with a way to transfer the null value into a value that the older class with the DateTime could accept.</p>
<p>I hate this idea but, I thought of using a a property to translate the null to a dummy date and then back again but there is no way to determine who is calling the property so I wouldn't know when to feed a null or a dummy date back from the get.</p>
<p>Any Ideas would be greatly appreciated. </p>
http://stackoverflow.com/questions/1856345/why-arent-f-records-allowed-to-have-allownullliteralattribute2Why aren't F# records allowed to have AllowNullLiteralAttribute?gradbot2009-12-06T19:34:01Z2009-12-06T20:16:16Z
<p>Is there a compiler implementation reason why records can't have the AllowNullLiteralAttribute attribute or is this a chosen constraint?</p>
<p>I do see this constraint force cleaner code sometimes but not always.</p>
<pre><code>[<AllowNullLiteralAttribute>]
type IBTreeNode = {
mutable left : IBTreeNode; mutable right : IBTreeNode; mutable value : int}
with
member this.Insert x =
if x < this.value then
if this.left = null then
this.left <- {left = null; right = null; value = x}
else
this.left.Insert x
else
if this.right = null then
this.right <- {left = null; right = null; value = x}
else
this.right.Insert x
// Would be a lot of boilerplate if I wanted these public
[<AllowNullLiteralAttribute>]
type CBTreeNode(value) =
let mutable left = null
let mutable right = null
let mutable value = value
with
member this.Insert x =
if x < value then
if left = null then
left <- CBTreeNode(x)
else
left.Insert x
else
if right = null then
right <- CBTreeNode(x)
else
right.Insert x
</code></pre>
<p>Added an immutable version for the frown on mutability crowd. It's about 30% faster in this case.</p>
<pre><code>type OBTree =
| Node of OBTree * OBTree * int
| Null
with
member this.Insert x =
match this with
| Node(left, right, value) when x <= value -> Node(left.Insert x, right, value)
| Node(left, right, value) -> Node(left, right.Insert x, value)
| Null -> Node(Null, Null, x)
</code></pre>
http://stackoverflow.com/questions/1850180/c-are-nullable-types-int-objects1C#: Are nullable types (int?) objects?Norla2009-12-04T22:51:10Z2009-12-04T23:57:18Z
<p>I understand from <a href="http://stackoverflow.com/questions/1793357/do-value-types-integer-decimal-boolean-etc-inherit-from-object">this post</a> that value types in C# are not objects. That is, they do not inherit from System.Object.</p>
<p>Assuming my logic holds up to this point, are nullable types, such as int?, objects. Do they inherit from Object?</p>
<p>If so, are they subject to all the same rules and constraints as other objects, or are there special rules governing their behavior?</p>
<p>Just as reference, this question comes from an inquiry into the workings of the null coalesce operator.</p>
http://stackoverflow.com/questions/1830466/should-references-in-object-oriented-programming-languages-be-non-nullable-by-def6Should References in Object-Oriented Programming Languages be Non-Nullable by Default?cdiggins2009-12-02T03:19:59Z2009-12-04T15:19:19Z
<p>Null pointers have been described as the "<a href="http://lambda-the-ultimate.org/node/3186" rel="nofollow">billion dollar mistake</a>". Some languages have reference types which can't be assigned the null value. </p>
<p>I wonder if in designing a new object-oriented language whether the default behavior should be for references to prevent being assigned null. A special version of the could then be used to override this behavior. For example:</p>
<pre><code>MyClass notNullable = new MyClass();
notNullable = null; // Error!
// a la C#, where "T?" means "Nullable<T>"
MyClass? nullable = new MyClass();
nullable = null; // Allowed
</code></pre>
<p>So my question is, is there any reason not to do this in a new programming language? </p>
<p>EDIT:</p>
<p>I wanted to add that <a href="http://dobbscodetalk.com/index.php?option=com%5Fmyblog&show=Non-Nullable-References-by-Default.html&Itemid=29" rel="nofollow">a recent comment on my blog</a> pointed out that non-nullable types have a particular problem whenb used in Arrays. I also want to thank everyone for their useful insights. It is very helpful, sorry I could only choose one answer.</p>
http://stackoverflow.com/questions/1833949/why-is-null-not-equal-to-null-false5why is null not equal to null falseprmatta2009-12-02T16:12:08Z2009-12-03T17:32:12Z
<p>I was reading this article:
<a href="http://stackoverflow.com/questions/191640/get-null-null-in-sql">http://stackoverflow.com/questions/191640/get-null-null-in-sql</a></p>
<p>And the consensus is that when trying to test equality between two (nullable) sql columns, the right approach is:</p>
<pre><code>where ((A=B) OR (A IS NULL AND B IS NULL))
</code></pre>
<p>When A and B are NULL, (A=B) still returns FALSE, since NULL is not equal to NULL. That is why the extra check is required.</p>
<p>What about when testing inequalities? Following from the above discussion, it made me think that to test inequality I would need to do something like:</p>
<pre><code>WHERE ((A <> B) OR (A IS NOT NULL AND B IS NULL) OR (A IS NULL AND B IS NOT NULL))
</code></pre>
<p>However, I noticed that that is not necessary (at least not on informix 11.5), and I can just do:</p>
<pre><code>where (A<>B)
</code></pre>
<p>If A and B are NULL, this returns FALSE. If NULL is not equal to NULL, then shouldn't this return TRUE?</p>
<p><strong>EDIT</strong><br>
These are all good answers, but I think my question was a little vague. Allow me to rephrase:</p>
<p>Given that either A or B can be NULL, is it enough to check their inequality with</p>
<pre><code>where (A<>B)
</code></pre>
<p>Or do I need to explicitly check it like this:</p>
<pre><code>WHERE ((A <> B) OR (A IS NOT NULL AND B IS NULL) OR (A IS NULL AND B IS NOT NULL))
</code></pre>
<p>REFER to this <a href="http://stackoverflow.com/questions/1835546/testing-inequality-with-columns-that-can-be-null">thread</a> for the answer to this question.</p>
http://stackoverflow.com/questions/1835546/testing-inequality-with-columns-that-can-be-null0testing inequality with columns that can be nullprmatta2009-12-02T20:23:40Z2009-12-03T17:26:39Z
<p>So, I asked a <a href="http://stackoverflow.com/questions/1833949/why-is-null-not-equal-to-null-false">question</a> 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. </p>
<p>My actual question was, what is the time honored fashion in which db guys test inequalities for two columns that can both be NULL. My question is the exact opposite of this <a href="http://stackoverflow.com/questions/191640/get-null-null-in-sql">question</a>.</p>
<p>The requirements are as follows, A and B are two columns:<br>
a) if A and B are both NULL, they are equal, return FALSE<br>
b) if A and B are both not NULL, then return A<>B<br>
c) if either A or B are NULL, they are not equal, return TRUE</p>
http://stackoverflow.com/questions/1833054/how-can-i-format-a-nullable-datetime-with-tostring1How can I format a nullable DateTime with ToString()?Edward Tanguay2009-12-02T13:57:33Z2009-12-02T14:30:32Z
<p>How can I convert the nullable DateTime <strong>dt2</strong> to a formatted string?</p>
<pre><code>DateTime dt = DateTime.Now;
Console.WriteLine(dt.ToString("yyyy-MM-dd hh:mm:ss")); //works
DateTime? dt2 = DateTime.Now;
Console.WriteLine(dt2.ToString("yyyy-MM-dd hh:mm:ss")); //gives following error:
</code></pre>
<blockquote>
<p>no overload to method ToString takes
one argument</p>
</blockquote>
http://stackoverflow.com/questions/1817302/nhibernate-futurevalue-and-nullable-types0NHibernate FutureValue and nullable typescbp2009-11-30T00:31:41Z2009-11-30T00:31:41Z
<p>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.</p>
<p>This is the query I am trying to run:</p>
<pre><code>Session.CreateCriteria<MyEntity>()
.SetProjection(Projections.Min("NullableDecimalProperty"))
.FutureValue<decimal?>();
</code></pre>
<p>When the minimum value is a null column, I receive the following exception:</p>
<p><em>System.ArgumentException: The value "" is not of type "System.Nullable`1[System.Decimal]" and cannot be used in this generic collection.
Parameter name: value</em></p>
http://stackoverflow.com/questions/1785283/cant-deserialize-a-nullable-keyvaluepair-from-json-with-asp-net-ajax1Can't Deserialize a Nullable KeyValuePair from JSON with ASP.NET AJAXNoel2009-11-23T19:06:32Z2009-11-26T23:12:04Z
<p>The following class does not deserialize (but does serialize) using <code>System.Web.Script.Serialization.JavaScriptSerializer</code>.</p>
<pre><code>public class foo {
public KeyValuePair<string, string>? bar {get;set;}
}
</code></pre>
<p>The attempt to deserialize results in a <code>System.NullReferenceException</code> when <code>System.Web.Script.Serialization.ObjectConverter.ConvertDictionaryToObject</code> reaches the <code>bar</code> property. (Note, that is a surmise based on the stack trace.)</p>
<p>Changing the property type to <code>KeyValuePair<string,string></code> fixes the problem, but I'd like to keep the <code>Nullable</code> type if at all possible.</p>
<p>The JSON is exactly what you would expect:</p>
<pre><code>{"foo": {
"bar": {
"Key":"Jean-Luc",
"Value":"Picard"
}
}}
</code></pre>
<p>Help?</p>
http://stackoverflow.com/questions/1798085/linq-transform-memberexpression-type-to-not-nullable1Linq: transform memberExpression type to not nullableMiau2009-11-25T16:19:06Z2009-11-25T16:36:24Z
<p>the following member expression type can sometimes be NUllable, I m checking that , however I need to convert it to a non nullable type , </p>
<pre><code>MemberExpression member = Expression.Property(param, something);
var membertype = member.Type;
if (membertype.IsGenericType && membertype.GetGenericTypeDefinition() == typeof(Nullable<>))
{ // convert to not nullable type?...
</code></pre>
<p>Does anyone know how? </p>
http://stackoverflow.com/questions/1785445/is-it-possible-to-enforce-that-a-type-param-is-nullable-on-a-class3Is it possible to enforce that a type param is nullable on a classGord2009-11-23T19:37:51Z2009-11-23T19:40:12Z
<p>given a class definition like:</p>
<pre><code>public class Test<T>
{
T _value;
public void Test(T value)
{
_value = value;
}
public void DoStuff()
{
if(_value.HasValue)
{
//stuff
}
}
}
</code></pre>
<p>I would like to enforce that T is nullable so I can use the class like:</p>
<pre><code>//does stuff
new Test<int?>(3).DoStuff();
//doesn't do stuff
new Test<int?>(null).DoStuff();
</code></pre>
http://stackoverflow.com/questions/1614862/how-to-use-sqlbulkcopy-with-nullable-columns1How to use SqlBulkCopy with nullable columns Chad2009-10-23T17:25:14Z2009-11-23T12:34:20Z
<p>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 a zero length column. The error is <strong>"Received an invalid column length from the bcp client..."</strong></p>
<p>I’m wondering what the best practice is for dealing with this. <a href="http://social.msdn.microsoft.com/Forums/en-US/adodotnetdataproviders/thread/7284f567-7454-4dc6-b5bc-a2c69d572ea5" rel="nofollow">This</a> seems to be a good forum post describing this issue and how to solve it for reading a csv file. </p>
<p>I think my situation is pretty A-typically and simple. I need to move a unknown amout of data from one database table to another database. The more simple answer for me would be to use SSIS/DTS or linked servers in sql server, however the customer wants the app to do the data movement. </p>
<p><strong>Is there a known work around for this or a better steaming solution for moving data with nullable fields?</strong></p>
<pre><code>//access db
string src_db = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\SourceDB.mdb;Jet OLEDB ";
//sql db
string dest_db = @"Data Source=.\TEST;Initial Catalog=testdb;User Id=user;Password=password;";
string sql = "";
OleDbConnection sdb = new OleDbConnection( src_db );
OleDbCommand cmd = new OleDbCommand( sql, sdb );
OleDbDataReader rs = null;
SqlConnection db = new SqlConnection( dest_db );
SqlCommand clear = null;
SqlBulkCopy bulk_load = null;
// Read in the source table
sql = "select * from someTable";
sdb.Open();
cmd = new OleDbCommand( sql, sdb );
rs = cmd.ExecuteReader();
// Import into the destination table
bulk_load = new SqlBulkCopy( db );
bulk_load.DestinationTableName = "test";
bulk_load.WriteToServer( rs );
</code></pre>
http://stackoverflow.com/questions/1379071/wpf-nullable-combobox0WPF : Nullable ComboBoxYannic2009-09-04T12:55:47Z2009-11-22T14:24:51Z
<p>I want to have an empty item in the comboBox to allow the user to "Unselect" and keep the comboBox empty (Null value).</p>
<p>How can I do that?</p>
http://stackoverflow.com/questions/1762772/is-it-possible-to-use-operator-and-throw-new-exception2Is it possible to use operator ?? and throw new Exception() ?abatishchev2009-11-19T11:50:36Z2009-11-19T18:30:06Z
<p>I have a number of methods doing next:</p>
<pre><code>var result = command.ExecuteScalar() as Int32?;
if(result.HasValue)
{
return result.Value;
}
else
{
throw new Exception(); // just an example, in my code I throws my own one
}
</code></pre>
<p>I wish I could use operator <code>??</code> like this:</p>
<pre><code>return command.ExecuteScalar() as Int32? ?? throw new Eception();
</code></pre>
<p>but it generates a compilation error.</p>
<p>Is it possible to rewrite my code or there is only one way to do that?</p>
http://stackoverflow.com/questions/1751095/linq-grouping-by-nullable-datetime-and-using-this-as-criteria0Linq grouping by nullable datetime and using this as criteriajoshblair2009-11-17T19:15:38Z2009-11-19T18:01:09Z
<p>I am struggling with a nullable datetime column [DateInsp] in an ASP.NET app which uses SubSonic3, Linq, MS SQL Server 2005.</p>
<p>I had this all working when the datetime column [DateInsp] did not allow nulls. A new requirement forced me to set the [DateInsp] column to allow nulls and now I am struggling getting this piece of functionality to work properly again.</p>
<p><strong>Problem 1:</strong>
I need to first render a dropdown list of the 7 most recent inspection dates for a given inspector (this is a grouped list of the 7 most recent dates for the inspector). Here is the TSQL that I need to convert to Linq syntax:</p>
<pre><code>declare @InspectorID varchar(5)
set @InspectorID = 'GPA'
select top 7 convert(nvarchar(30), [DateInsp], 101) InspectedDate
from [dbo].[IncomingInspection]
group by [InspectorID], convert(nvarchar(30), [DateInsp], 101)
having [InspectorID] = @InspectorID
order by convert(nvarchar(30), [DateInsp], 101) desc
</code></pre>
<p>If I can't get this work properly using Linq, BUT I can/could build a stored proc to return the list of dates and throw that into a dropdown. Fair enough. I've been fighting with the Linq syntax so any help in this area is greatly appreciated.</p>
<p><strong>Problem 2:</strong> I need to use the selected date in the dropdown mentioned above to pull the correct records for this inspector and the correct date. Again, this is a nullable datetime field and this is real sticking point for me.</p>
<p>Here was the original Linq syntax that accomplished the requirement before I had to change the datetime field to allow Nulls:</p>
<pre><code> Dim query = (From i In db.IncomingInspections _
Where i.InspectorID = User.Identity.Name _
Group By Key = New With {i.DateInsp} Into Group _
Order By Key.DateInsp Descending _
Select Key = New With {.DateInsp = Key.DateInsp.ToShortDateString}).Take(7)
</code></pre>
<p>This app is written in VB.NET and uses some Linq syntax which both make my head hurt. If you can offer C# syntax to accomplish this I can translate it to VB.NET myself.</p>
<p><strong>EDIT:</strong></p>
<p>For some reason I can't use the .Value property; I get: <em>The member 'Value' is not supported</em></p>
<p>I get: <em>"Incorrect syntax near '<'."</em> if I try to add the date comparison to the where clause too.</p>
<p><strong>END EDIT</strong></p>
<p>Thanks Much,</p>
<p>Josh</p>
http://stackoverflow.com/questions/1738062/scala-something-like-option-some-none-but-with-three-states-some-none-unkn1Scala: Something like Option (Some, None) but with three states: Some, None, UnknownAlex Black2009-11-15T16:47:10Z2009-11-16T01:26:43Z
<p>I need to return values, and when someone asks for a value, tell them one of three things:</p>
<ol>
<li>Here is the value </li>
<li>There is no value</li>
<li>We have no information on this value (unknown)</li>
</ol>
<p>case 2 is subtly different than case 3. Example:</p>
<pre><code>val radio = car.radioType
</code></pre>
<ol>
<li>we know the value: return the radio type, say "pioneer"</li>
<li>b. there is no value: return None</li>
<li>c. we are missing data about this car, we don't know if it has a radio or not</li>
</ol>
<p>I thought I might extend scala's None and create an Unknown, but that doesn't seem possible.</p>
<p>suggestions?</p>
<p>thanks!</p>
<p><strong>Update:</strong></p>
<p>Ideally I'd like to be able to write code like this:</p>
<pre><code>car.radioType match {
case Unknown =>
case None =>
case Some(radioType : RadioType) =>
}
</code></pre>
http://stackoverflow.com/questions/1706405/c-dbnull-and-nullable-types-cleanest-form-of-conversion1C# DBNull and nullable Types - cleanest form of conversionWill Hughes2009-11-10T08:34:17Z2009-11-10T11:48:05Z
<p>I have a DataTable, which has a number of columns. Some of those columns are nullable. </p>
<pre><code>DataTable dt; // Value set.
DataRow dr; // Value set.
// dr["A"] is populated from T-SQL column defined as: int NULL
</code></pre>
<p>What, then, is the cleanest form of converting from a value in a DataRow, to a nullable variable. </p>
<p>Ideally, I would be able to do something like: </p>
<pre><code>int? a = dr["A"] as int?;
</code></pre>
<p><strong><em>Edit</strong>: Turns out you CAN do this, the side effect being that if your Schema types arn't ints, then this is ALWAYS going to return null. The answer by Ruben of using <code>dr.Field<int?>("A")</code> ensures type mismatches don't silently fail. This, of course, will be picked up by thorough unit tests.</em> </p>
<p>Instead I'm usually typing something along the lines of: </p>
<pre><code>int? a = (dr["A"] != DBNull.Value) ? (int)dr["A"] : 0;
</code></pre>
<p>This is a bunch more keystrokes, but more importantly there's more room for someone to stuff something up with a wrong keystroke.
Yes, a Unit Test will pick this up, but I'd rather stop it altogether.</p>
<p>What is the cleanest, least error prone pattern for this situation. </p>
http://stackoverflow.com/questions/1705102/c-passing-nullable-variable-to-method-that-only-accepts-nonnull-vars1C#: passing nullable variable to method that only accepts nonnull varsTeddy2009-11-10T01:25:40Z2009-11-10T01:38:59Z
<p>I have code that is similar to this:</p>
<pre><code>public xyz (int? a)
{
if (a.HasValue)
{
// here DoSomething has parameters like DoSomething(int x)
blah = DoSomething(a);
</code></pre>
<p>I am getting the error (cannot convert from int? to int). Is there a way I can pass the variable 'a' to my function without having to do <code>DoSomething(int? x)</code>?</p>
http://stackoverflow.com/questions/1640306/binding-to-a-nullabledatetime-control-property0Binding to a Nullable<DateTime> control propertyICS2009-10-28T21:42:20Z2009-11-09T14:44:38Z
<p>We have a custom control that has a "Value" property of type System.Nullable (aka System.DateTime?). We have an object with a "Received" property of the same type. When we try to bind the control to the object, the following <em>InvalidCastException</em> is thrown:</p>
<p><strong>Invalid cast from 'System.DateTime' to 'System.Nullable`1[[System.DateTime, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]'.</strong></p>
<p>Here is what we're doing:</p>
<p>Object property:</p>
<pre><code>private System.DateTime? _dateTimeReceived;
public System.DateTime? DateTimeReceived
{
get
{
return this._dateTimeReceived;
}
set
{
this._dateTimeReceived = value;
this.OnChanged("DateTimeReceived", value); //Implements INotifyPropertyChanged and fires PropertyChanged event
}
}
</code></pre>
<p>Control property:</p>
<pre><code>private System.DateTime? _value;
[System.ComponentModel.Category("Behavior")]
[System.ComponentModel.Description("The current date value for this control")]
public new System.DateTime? Value
{
get
{
return this._value;
}
set
{
this._value = value;
}
}
</code></pre>
<p>In the application, here is where the exception is thrown:</p>
<pre><code>this.dateReceived.DataBindings.Add("Value", this._object, "DateTimeReceived");
</code></pre>
<p>As you can see, the object's property (this._object.DateTimeReceived) is a System.DateTime? type and the control's property (this.dateReceived.Value) is a System.DateTime? type.</p>
<p>Why would this cause an <em>InvalidCastException</em>? And how can we correct this so that it binds correctly?</p>
<p><strong>Update 2009-10-29 14:26 CDT:</strong></p>
<p>Here is the stack trace:</p>
<pre><code> at System.Convert.DefaultToType(IConvertible value, Type targetType, IFormatProvider provider)
at System.DateTime.System.IConvertible.ToType(Type type, IFormatProvider provider)
at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
at System.Windows.Forms.Binding.FormatObject(Object value)
at System.Windows.Forms.Binding.PushData(Boolean force)
at System.Windows.Forms.Binding.UpdateIsBinding()
at System.Windows.Forms.Binding.CheckBinding()
at System.Windows.Forms.Binding.SetListManager(BindingManagerBase bindingManagerBase)
at System.Windows.Forms.ListManagerBindingsCollection.AddCore(Binding dataBinding)
at System.Windows.Forms.BindingsCollection.Add(Binding binding)
at System.Windows.Forms.BindingContext.UpdateBinding(BindingContext newBindingContext, Binding binding)
at System.Windows.Forms.Binding.SetBindableComponent(IBindableComponent value)
at System.Windows.Forms.ControlBindingsCollection.AddCore(Binding dataBinding)
at System.Windows.Forms.BindingsCollection.Add(Binding binding)
at System.Windows.Forms.ControlBindingsCollection.Add(String propertyName, Object dataSource, String dataMember, Boolean formattingEnabled, DataSourceUpdateMode updateMode, Object nullValue, String formatString, IFormatProvider formatInfo)
at System.Windows.Forms.ControlBindingsCollection.Add(String propertyName, Object dataSource, String dataMember)
</code></pre>
http://stackoverflow.com/questions/1690409/populating-an-object-from-the-db-where-do-you-stop1Populating an Object from the DB -- Where do you stop?Bob Horn2009-11-06T20:59:46Z2009-11-07T17:07:32Z
<p>When getting an object from the DB, should the object's properties also be loaded? There seems to be these approaches.</p>
<ul>
<li>Create well-formed, fully-loaded objects.</li>
</ul>
<p>Pro: No need to check if a property has been loaded; it has. Pass it around and don’t worry about parts of the object not being there.</p>
<p>Con: Where do you stop? If an object has an object, and that object has an object, and that object has 40 objects as properties, etc… Do you load the whole DB? Or do you make a decision in the BLL as to what constitutes a well-formed object, and load those properties?</p>
<ul>
<li>Don’t load any properties that are other objects.</li>
</ul>
<p>Pro: Quick, no loading unnecessary properties.</p>
<p>Con: Code has to be constantly written to check if properties are populated.</p>
<ul>
<li>Lazy-loading: only load properties when they are first used.</li>
</ul>
<p>Pro/Con: Not sure what to say about this approach. It seems intuitively wrong.</p>
<p>Is there another approach? What approach is the best?</p>
<p>And finally, what about properties that can be null? For example, a car may not have a PreviousOwner object. Do you set it to null? An empty PreviousOwner object? Does that property belong in another class then?</p>
http://stackoverflow.com/questions/1522367/library-support-for-scalas-notnull-trait3Library support for Scala's NotNull traitElazar Leibovich2009-10-05T21:00:34Z2009-11-06T02:26:38Z
<p>As far as I understand, if you want a reference type to be non-nullable you have to mixin the magic <code>NotNull</code> trait, and the compiler will automatically prevent you from putting <code>null</code>-able values in it. See this <a href="http://www.nabble.com/Not-null-td19637829.html" rel="nofollow">mailing-list thread</a> for instance.</p>
<p>What lacking is, a decent library support for non-nullable types. If I would like to write a package that don't need to interface java code directly, and I want to prevent all types in this package from using <code>null</code> by default, I have no choice but to redefine all builting variables like so</p>
<pre><code>//can't actually do that, but just to give the general idea
class NString extends String with NotNull
class NMap[X,Y] extends Map[X,Y] with NotNull
...
</code></pre>
<p>I expect scala to have (as a compiler plugin, or library) option for me to write</p>
<pre><code>import collections.notnull._
</code></pre>
<p>in order to easily disallow <code>null</code> usage in a specific scala file.</p>
<p>Is there an option to easily force many usefull types in the standard library to be not-nullable?</p>
http://stackoverflow.com/questions/374651/how-to-check-if-an-object-is-nullable8How to check if an object is nullable?SDX20002008-12-17T14:17:16Z2009-11-05T12:46:15Z
<p>Hi,</p>
<p>How do I check if a given object is nullable in other words how to implement the following method...</p>
<pre><code>bool IsNullableValueType(object o)
{
...
}
</code></pre>
<p>EDIT: I am looking for nullable value types. I didn't have ref types in mind. </p>
<pre><code>//Note: This is just a sample. The code has been simplified
//to fit in a post.
public class BoolContainer
{
bool? myBool = true;
}
var bc = new BoolContainer();
const BindingFlags bindingFlags = BindingFlags.Public
| BindingFlags.NonPublic
| BindingFlags.Instance
;
object obj;
object o = (object)bc;
foreach (var fieldInfo in o.GetType().GetFields(bindingFlags))
{
obj = (object)fieldInfo.GetValue(o);
}
</code></pre>
<p>obj now refers to an object of type <code>bool</code> (<code>System.Boolean</code>) with value equal to <code>true</code>. What I really wanted was an object of type <code>Nullable<bool></code></p>
<p>So now as a work around I decided to check if o is nullable and create a nullable wrapper around obj.</p>
http://stackoverflow.com/questions/1671254/datetime-comparison-in-objectquery-where0DateTime comparison in ObjectQuery.Wherejustin2009-11-04T01:47:30Z2009-11-04T21:07:11Z
<p>I'm using Entity Framework, and I have a COMMENT entity. A COMMENT has a DATEMODIFIED property, which is a Nullable Date. I'm trying to build a query that will filter COMMENTs by date, so I create a startDate object, and do the following:</p>
<pre><code>Dim q As ObjectQuery(Of COMMENT) = _
(From c In model.COMMENT Select c)
If startDate.HasValue Then
q = q.Where(Function(c) startDate.Value <= c.DATEMODIFIED)
End If
</code></pre>
<p>The problem is that q.toList() is not returning any comments, even though I think it should. All comments in the database have DATEMODIFIED values, and even if I pass in DateTime.MinValue as the startDate, the query still doesn't match any entities. </p>
<p>I set a breakpoint before the If-Statement and used the Visual Studio Watch Window to try and see what's going on:</p>
<pre><code>q.ToList()(0).DATEMODIFIED 'Returns the expected date
startDate.Value 'Returns the expected date
startDate.Value <= q.ToList()(0).DATEMODIFIED 'Returns True...
</code></pre>
<p>But once once it hits the q = q.Where(predicate) part, q.ToList() no longer returns any entries. I'm stumped.</p>
http://stackoverflow.com/questions/1675463/parsing-boolean-from-configuration-section-in-web-config0Parsing boolean from configuration section in web.configBloopy2009-11-04T17:39:52Z2009-11-04T17:54:19Z
<p>Hello, I have a custom configuration section in my web.config.</p>
<p>One of my classes is grabbing from this:</p>
<pre><code><myConfigSection LabelVisible="" TitleVisible="true"/>
</code></pre>
<p>I have things working for parsing if I have true or false, however if the attribute is blank I am getting errors. When the config section tries to map the class to the configuration section I get an error of "not a valid value for bool" on the 'LabelVisible' part.</p>
<p>How can I parse "" as false in my myConfigSection class?</p>
<p>I have tried this:</p>
<pre><code> [ConfigurationProperty("labelsVisible", DefaultValue = true, IsRequired = false)]
public bool? LabelsVisible
{
get
{
return (bool?)this["labelsVisible"];
}
</code></pre>
<p>But when I try and use what is returned like so:</p>
<pre><code>graph.Label.Visible = myConfigSection.LabelsVisible;
</code></pre>
<p>I get an error of:</p>
<pre><code>'Cannot implicitly convert type 'bool?' to 'bool'. An explicit conversion exists (are you missing a cast?)
</code></pre>
<p>Thanks for any suggestions!</p>
http://stackoverflow.com/questions/1645305/structuremap-withctorarg-equalto-and-nullable-types0StructureMap "WithCtorArg" "EqualTo" and nullable typesJason Young2009-10-29T17:25:31Z2009-11-03T16:52:15Z
<p>StructureMap doesn't like passing in Nullable types as constructor arguments. Is there a reason for this? Is there a way to get this to work?</p>
<pre><code>[TestMethod]
public void Demo()
{
ObjectFactory.Initialize(x => x.ForRequestedType<TestClass>()
.TheDefault.Is.OfConcreteType<TestClass>()
.WithCtorArg("param1").EqualTo((byte?)3));
//This fails, but works if it's non-nullable
var result = ObjectFactory.GetInstance<TestClass>();
}
public class TestClass
{
public TestClass(byte? param1)
{ }
}
</code></pre>