Skip to content

Instantly share code, notes, and snippets.

@hotgazpacho
Created March 18, 2011 15:43
Show Gist options
  • Select an option

  • Save hotgazpacho/876294 to your computer and use it in GitHub Desktop.

Select an option

Save hotgazpacho/876294 to your computer and use it in GitHub Desktop.
var libraries = session.CreateQuery("SELECT id, Name FROM LibraryControl")
.Future<object[]>()
.Select(x => new KeyValuePair<int, string>(Convert.ToInt32(x[0]), Convert.ToString(x[1])));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment