What is the difference between the two pieces of code there?
And that is better than what is used?
DataClassesDataContext db = new DataClassesDataContext();
var QSelect1 = from _ADS in db.tblADs
where _ADS.fldAdsId == Convert.ToInt32(e.CommandArgument)
select _ADS;
var QSelect2 = db.tblADs.Where(x => x.fldAdsId == Convert.ToInt32(e.CommandArgument));