LINQ - Update null integer data field - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:10:46Z http://stackoverflow.com/feeds/question/385512 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/385512/linq-update-null-integer-data-field 0 LINQ - Update null integer data field StoneHeart 2008-12-22T03:57:57Z 2009-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#385549 0 Answer by SharePoint Newbie for LINQ - Update null integer data field SharePoint Newbie 2008-12-22T04:19:58Z 2008-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#415674 0 Answer by naspinski for LINQ - Update null integer data field naspinski 2009-01-06T06:59:40Z 2009-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#1075792 0 Answer by rzb for LINQ - Update null integer data field rzb 2009-07-02T17:53:13Z 2009-07-02T17:53:13Z <p>Same problem here!!!! Seems like a bug to me~~</p>