Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.   WebAppDataContext db = new WebAppDataContext();
  2.   var Results = (from t in db.MyTable
  3.                 order by t.OrderField
  4.                 where t.ValueField == targetValue
  5.                 select t);