vote up 5 vote down star

Hi, does anyone know the best way to insert a column in a datatable at position 0?

flag

76% accept rate
Why do you want to do this? The order of columns should actually be not relevant. – Stefan Steinegger Aug 27 at 9:43
sometimes if you are adding column to the datatable after getting the data from db you may need to set it at the begging. – Wael Dalloul Aug 27 at 9:46
im pusing the datatable into a bulk insert – Grant Aug 27 at 10:59

1 Answer

vote up 5 vote down check

use the following code to add col to datatable

    DataColumn Col   = datatable.Columns.Add("Column Name", System.Type.GetType("System.Boolean"));
    Col.SetOrdinal(0);// to put the column in position 0;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.