LINQ - Update null integer data field - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T10:10:46Zhttp://stackoverflow.com/feeds/question/385512http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/385512/linq-update-null-integer-data-field0LINQ - Update null integer data fieldStoneHeart2008-12-22T03:57:57Z2009-07-02T17:53:13Z
<p>I have got a field with data type <code>int?</code> price and allow null, when I set</p>
<pre><code>book.price = null;
</code></pre>
<p>and update, it is not saved and does not throw any exceptions, when I change value # null, it is ok. I want set it null, plz help.</p>
http://stackoverflow.com/questions/385512/linq-update-null-integer-data-field/385549#3855490Answer by SharePoint Newbie for LINQ - Update null integer data fieldSharePoint Newbie2008-12-22T04:19:58Z2008-12-22T04:19:58Z<p>Hi,</p>
<p>Make sure the field is nullable in the database and is reflected so in the dbml.
Regenerate the dbml for the table just to be sure. (Drop tabel from dbml and add again)</p>
<p>All I can say is it works for us so this is very strange.</p>
<p>Kind regards,</p>
http://stackoverflow.com/questions/385512/linq-update-null-integer-data-field/415674#4156740Answer by naspinski for LINQ - Update null integer data fieldnaspinski2009-01-06T06:59:40Z2009-01-06T06:59:40Z<p>I am not suer I understand the question, this part is unclear: "when I change value # null, it is ok"</p>
<p>Did you make sure to call </p>
<pre><code>db.SaveChanges();
</code></pre>
<p>(where [db] is the name of your Entites object)
It is a simple mistake that I make often :P</p>
http://stackoverflow.com/questions/385512/linq-update-null-integer-data-field/1075792#10757920Answer by rzb for LINQ - Update null integer data fieldrzb2009-07-02T17:53:13Z2009-07-02T17:53:13Z<p>Same problem here!!!! Seems like a bug to me~~</p>