Skip to content

Instantly share code, notes, and snippets.

@alohasoftworks
Created September 25, 2009 15:32
Show Gist options
  • Select an option

  • Save alohasoftworks/193624 to your computer and use it in GitHub Desktop.

Select an option

Save alohasoftworks/193624 to your computer and use it in GitHub Desktop.
var job = (from jobs in db.Jobs
where jobs.Id == job.Id
select new { Id = jobs.Id, Title = jobs.Title, Description = jobs.Description }).First();
return Json(job);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment