G
Guest
Hi,
I have ResultDataSet returned by some "DataAccess" component, and I have
typed dataset, with all other functionality.
In typed dataset where are tables with columns which uses expression
ISNULL([Column_A], [Column_B]).
After doing:
myWorkDataSet.Merge(ResultDataSet)
myDataGrid.SetDataBindings(myWorkDataSet, memberTable)
these expressions are not working initially. But after editing any row in
datagrid (and other 3rd party grid), expressions are working again.
Current solution after myWorkDataSet.Merge(ResultDataSet), to do
Column.Expression = Column.Expression
Maybe I am missing something?
I have ResultDataSet returned by some "DataAccess" component, and I have
typed dataset, with all other functionality.
In typed dataset where are tables with columns which uses expression
ISNULL([Column_A], [Column_B]).
After doing:
myWorkDataSet.Merge(ResultDataSet)
myDataGrid.SetDataBindings(myWorkDataSet, memberTable)
these expressions are not working initially. But after editing any row in
datagrid (and other 3rd party grid), expressions are working again.
Current solution after myWorkDataSet.Merge(ResultDataSet), to do
Column.Expression = Column.Expression
Maybe I am missing something?