Dataset: expression columns recalculation

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
 
A

amir massourian

Hi Hugo,

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

Hugo Batista

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top