Skip to content

Instantly share code, notes, and snippets.

@fabiomaulo
Created June 15, 2010 19:17
Show Gist options
  • Save fabiomaulo/439560 to your computer and use it in GitHub Desktop.
Save fabiomaulo/439560 to your computer and use it in GitHub Desktop.
// On the fly ResultTransformer
public IDictionary<string, int> GetTagsCloud(Country country)
{
return Session.GetNamedQuery("TagsCloud").SetInt32("pCountry", country.Id)
.List<IList<object>>().ToDictionary(row => (string)row[0], row => (int) row[1]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment