Hi,
I have a data table. I like to add a column with value in a loop (index + ddmmyyyy) for this data table. How to do that using LINQ? Would it be any faster than using the loop and assigning the value to the column?
Thank you,
Hi,
I have a data table. I like to add a column with value in a loop (index + ddmmyyyy) for this data table. How to do that using LINQ? Would it be any faster than using the loop and assigning the value to the column?
Thank you,
Whether it’s faster or not depends entirely on exactly what you’re trying to do.
Try both and see what works for you.
have a look at the different options
in your case a combination
would be also an option, to name an alternate approach
Using LINQ for Data Column Updates has some contstraints and some implementations do risk an unneeded Blackboxing.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.