Skip to content

Instantly share code, notes, and snippets.

@felipeleusin
Created February 27, 2012 13:15
Show Gist options
  • Save felipeleusin/1923704 to your computer and use it in GitHub Desktop.
Save felipeleusin/1923704 to your computer and use it in GitHub Desktop.
Parse the numeric Id from a RavenDB id like "users/1"
public static class RavenHelpers
{
public static int ToIntId(this string id)
{
return int.Parse(id.Substring(id.LastIndexOf('/') + 1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment