Skip to content

Instantly share code, notes, and snippets.

@rarous
Created May 31, 2013 18:08
Show Gist options
  • Save rarous/5686814 to your computer and use it in GitHub Desktop.
Save rarous/5686814 to your computer and use it in GitHub Desktop.
public OrderableService GetById(int id)
{
return (from service in SourceSet
where service.ID == id
select service).
FirstOrDefault();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment