I am using LINQ
I have a Configuration table to store key values it has 30 settings in 30 rows
For eg:
setting value
A 2
B "xyz"
.
.
.
.
.
and so on
I have created Property class to hold all values from database.
I want to hold these settings in property class
so in which way i can fetch and set all these properties.
Do i have to loop through all rows and set properties one by one
or what are your efficient suggestions