Skip to content

Instantly share code, notes, and snippets.

@samdelagarza
Created April 22, 2010 13:58
Show Gist options
  • Save samdelagarza/375259 to your computer and use it in GitHub Desktop.
Save samdelagarza/375259 to your computer and use it in GitHub Desktop.
Use.Transaction(GetSessionFactory(facilityId), session => {
facilityName = session
.Linq<FacilityHierarchy>()
.Where(x => x.FACID == facilityId)
.Select(x => x.DOM_NAME)
.SingleOrDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment