I have a field in a dataset and im querying using Linq my code is
var countriesQry = from a in countTbl.AsEnumerable()
where a["CountryId"].ToString().Contains(countryId)
orderby a["CountryId"]
my problem is that in the "CountryId" field there can be a countryid of 1,22,13 (its a varchar field) so something can be a few countries. as you can guess its returning 1 and 13 if the "Countryid" = 1 can anyone tell how I can correct it
thanks