I have this in javascript and it evaluates as expected to a string representing a number (valid one):
dt2.Rows[0]["CountryID"]
I was wondering if I can combine this in javascript with linq
something like dt2.Rows.Select (x => x.CountryID)
so I can retrieve all country ids at once. But I get a syntax error. What is the correct syntax for linq in javascript (if it exists).