C# ADO.NET: nulls and DbNull -- is there more efficient syntax? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T17:19:59Zhttp://stackoverflow.com/feeds/question/218808http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax9C# ADO.NET: nulls and DbNull -- is there more efficient syntax?Stewart Johnson2008-10-20T15:23:55Z2008-10-20T17:08:15Z
<p>I've got a <code>DateTime?</code> that I'm trying to insert into a field using a <code>DbParameter</code>. I'm creating the parameter like so:</p>
<pre><code>DbParameter datePrm = updateStmt.CreateParameter();
datePrm.ParameterName = "@change_date";
</code></pre>
<p>And then I want to put the value of the <code>DateTime?</code> into the <code>dataPrm.Value</code> while accounting for <code>null</code>s.</p>
<p>I thought initially I'd be clever:</p>
<pre><code>datePrm.Value = nullableDate ?? DBNull.Value;
</code></pre>
<p>but that fails with the error</p>
<blockquote>
<p>Operator '??' cannot be applied to operands of type 'System.DateTime?' and 'System.DBNull'</p>
</blockquote>
<p>So I guess that only works if the second argument is a non-nullable version of the first argument. So then I went for:</p>
<pre><code>datePrm.Value = nullableDate.HasValue ? nullableDate.Value : DBNull.Value;
</code></pre>
<p>but that doesn't work either:</p>
<blockquote>
<p>Type of conditional expression cannot be determined because there is no implicit conversion between 'System.DateTime' and 'System.DBNull'</p>
</blockquote>
<p>But I don't want to convert between those types!</p>
<p>So far the only thing I can get to work is:</p>
<pre><code>if (nullableDate.HasValue)
datePrm.Value = nullableDate.Value;
else
datePrm.Value = DBNull.Value;
</code></pre>
<p>Is that really the only way I can write this? Is there a way to get a one-liner using the ternary operator to work?</p>
<p><strong>Update:</strong> I don't really get why the ?? version doesn't work. MSDN says:</p>
<blockquote>
<p>The ?? operator returns the left-hand operand if it is not null, or else it returns the right operand.</p>
</blockquote>
<p>That's exactly what I want!</p>
<p><strong>Update2:</strong> Well it was kind of obvious in the end:</p>
<pre><code>datePrm.Value = nullableDate ?? (object)DBNull.Value;
</code></pre>
http://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax/218843#2188431Answer by dnolan for C# ADO.NET: nulls and DbNull -- is there more efficient syntax?dnolan2008-10-20T15:36:09Z2008-10-20T15:36:09Z<p>It would work if you used</p>
<pre><code>datePrm.Value = nullableDate.HasValue ? (object)nullableDate.Value : DBNull.Value;
</code></pre>
http://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax/218844#2188441Answer by Dan for C# ADO.NET: nulls and DbNull -- is there more efficient syntax?Dan2008-10-20T15:36:13Z2008-10-20T15:36:13Z<p>I think the error with your second attempt is due to nullableDate.Value and DBNull.Value being different types and the ternary operator needing to pick one type to return in both cases. I don't have the environment to test this but I think this should work for you:</p>
<pre><code>datePrm.Value = nullableDate.HasValue ? (object)nullableDate.Value : (object)DBNull.Value;
</code></pre>
http://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax/218853#2188530Answer by Darren Kopp for C# ADO.NET: nulls and DbNull -- is there more efficient syntax?Darren Kopp2008-10-20T15:38:11Z2008-10-20T15:38:11Z<p>The way that I do it, is I have a static utility class that just goes through and checks to see if the parameter value is null, then i set the value to do DBNull. I just do that before i call the Execute.</p>
http://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax/218862#2188621Answer by Pop Catalin for C# ADO.NET: nulls and DbNull -- is there more efficient syntax?Pop Catalin2008-10-20T15:40:04Z2008-10-20T15:40:04Z<p>If you're using C# 3.0 you can create an extension method to do this easy:</p>
<pre><code>public static class DBNullableExtensions
{
public static object ToDBValue<T>(this Nullable<T> value) where T:struct
{
return value.HasValue ? (object)value.Value : DBNull.Value;
}
}
class Program
{
static void Main(string[] args)
{
int? x = null;
Console.WriteLine( x.ToDBValue() == DBNull.Value );
}
}
</code></pre>
http://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax/218896#2188965Answer by Stewart Johnson for C# ADO.NET: nulls and DbNull -- is there more efficient syntax?Stewart Johnson2008-10-20T15:49:20Z2008-10-20T17:08:15Z<p>Ah ha! I found an even more efficient solution than @Trebz's!</p>
<pre><code>datePrm.Value = nullableDate ?? (object)DBNull.Value;
</code></pre>