C
Cole
When merging a DataSet, if the the DataSet being merged into contains an
expression column and the DataSet merging does not, then the expression
column is not evaluated for new rows (they are DBNull). Of course, I strip
the expression column before updating because of the other bug that causes
DataAdapter Update to blow up if an Expression column is present, so this
causes the aforementioned bug to occur.
Is this a known bug? The workaround is to reset the column.Expression
property after a merge.
Cole
expression column and the DataSet merging does not, then the expression
column is not evaluated for new rows (they are DBNull). Of course, I strip
the expression column before updating because of the other bug that causes
DataAdapter Update to blow up if an Expression column is present, so this
causes the aforementioned bug to occur.
Is this a known bug? The workaround is to reset the column.Expression
property after a merge.
Cole