In LINQ how do i insert into all columns of type int in a table1 the same number value: 1, without specifying each column with the number (colint1, colint2, colint3, colint4) ?

link|improve this question

Which LINQ are you talking about? Generally, LINQ is for query operations. – oleksii May 22 '11 at 17:49
I want: all int to have value 1, i don't want to say colint1 = 1, colint2 = 1....etc. – divfe May 22 '11 at 17:57
feedback

1 Answer

up vote 1 down vote accepted

You can use reflection with something like this for an object 'o' and a new integer value 'newValue' (sorry, I don't have VS on this machine to test it out):

foreach(PropertyInfo prop in o.GetType().GetProperties()) 
{
    if(prop.PropertyType == typeof(int))
        prop.SetValue(o, newValue, null);
}

Then just be sure to save your changes

link|improve this answer
1  
wow i got to say, i am impressed, this helped me a lot. – divfe May 22 '11 at 18:57
happy to share, I ran into a very similar situation a while back – naspinski May 23 '11 at 14:23
feedback

Your Answer

 
or
required, but never shown

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