Dataset: expression columns recalculation

  • Thread starter Thread starter Hugo Batista
  • Start date Start date
H

Hugo Batista

Hi there

I'm having a typed dataset, where a datatable has some columns which are
expressions.

After doing a Merge, i was expected that my expression columns were
calculated, but they were not.

Although, if i do this
foreach(System.Data.DataColumn column in dataset.myDataTable.Columns)

{

if (column.Expression!=null && column.Expression.Length>0)

column.Expression =column.Expression;

}



they are calculated...

is this by design ?

thanks!

www.dotnetx.org
 
Hi

1.1 + SP1

thanks

amir massourian said:
Hi Hugo,

No, it is not By Design. Which version of framework you are using?


--
This posting is provided "AS IS", with no warranties, and confers no
rights.
Please do not send email directly to this alias. This alias is for
newsgroup purposes only.
 
Back
Top