VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid column - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T17:56:34Z http://stackoverflow.com/feeds/question/806590 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/806590/vs2005-vs2008-dataset-designer-insert-a-row-into-a-table-that-has-an-autogenerat 0 VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid column DoctaJonez 2009-04-30T12:09:18Z 2009-05-02T18:19:36Z <p>Hello all,</p> <p>I have a strongly typed DataTable created with the VS2005/VS2008 DataSet designer.</p> <p>The table has a Primary Key column that is a guid, which gets populated by SQL server. The problem is when I want add a row (or multiple rows) to my DataTable and then call the <a href="http://msdn.microsoft.com/en-us/library/z1z2bkx2.aspx" rel="nofollow">DataAdapter.Update</a> method (passing in the DataTable). When <a href="http://msdn.microsoft.com/en-us/library/z1z2bkx2.aspx" rel="nofollow">DataAdapter.Update</a> is called I get a SQL exception saying that I cannot insert NULL into the primary key column.</p> <p>How do I tell the designer that this is an autogenerated column and I do not want to provide a value for new rows? I just want the value generated by SQL.</p> <p>Am I missing something here, or is this a limitation of the DataSet designer?</p> <p>I know how achieve this using LINQ to SQL, but unfortunatley I do not have it at my disposal for this project.</p> http://stackoverflow.com/questions/806590/vs2005-vs2008-dataset-designer-insert-a-row-into-a-table-that-has-an-autogenerat/807182#807182 0 Answer by Mr. Brownstone for VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid column Mr. Brownstone 2009-04-30T14:25:10Z 2009-04-30T14:25:10Z <p>You're problably using DEFAULT NEWID() on your SQL Server table definition so the problem may be that the Dataset designer doesn't see this column as auto-generated.</p> <p>Maybe generating guid in your application code could be a solution? If not, then you could set default value in you Dataset but then you're probably have to also change DataAdapter Insert/Update statements so that this default value doesn't get inserted into Sql Server table.</p> <p>There could also be some other solution that I'm not aware of...</p> http://stackoverflow.com/questions/806590/vs2005-vs2008-dataset-designer-insert-a-row-into-a-table-that-has-an-autogenerat/815314#815314 0 Answer by xero for VS2005/VS2008 DataSet designer, insert a row into a table that has an autogenerated guid column xero 2009-05-02T18:19:36Z 2009-05-02T18:19:36Z <p>Possibly one of these:</p> <ul> <li>If you don't need the column in your DataSet for your app, then remove it.</li> <li>If you want the column but don't care to give it a value, then change it to allow DBNull.</li> <li>You can always turn off constraint enforcement (probably a bad idea): DataSet.EnforceConstraints = false</li> <li>You could fill the column with a surrogate key that does not get sent to the DB.</li> </ul> <p>For the first two options, if you want the convenience of letting the designer keep your structure in sync with your database, then you could remove the column or allow null programmatically, perhaps right next to a "// HACK: " comment explaining why.</p>