4
Answers

How to use variable inside Select() in linq

Ajeet Singh

Ajeet Singh

5y
6.6k
1
Finding the person whose SSN = 203456876 in the list"
 
foreach (DataRow o in dt.Select("SSN = '203456876'"))
{
}
string str = "asfdsfds";
 
How to use str instead ''203456876'?
Answers (4)