Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View v6ak's full-sized avatar

Vít Šesták v6ak

View GitHub Profile
@v6ak
v6ak / gist:5704291
Last active December 18, 2015 01:29 — forked from rarous/gist:5686814
public OrderableService GetById(int id)
{
return (
from service in SourceSet
where service.ID == id
select service
).FirstOrDefault();
}