Created
September 25, 2009 15:32
-
-
Save alohasoftworks/193624 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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