Skip to content

Instantly share code, notes, and snippets.

@ayende
Created August 16, 2011 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ayende/1149848 to your computer and use it in GitHub Desktop.
Save ayende/1149848 to your computer and use it in GitHub Desktop.
public T GetCache<T>(string id)
{
return Cache[id] ??
Cache[id] = Session.Get<T>(id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment