Skip to content

Instantly share code, notes, and snippets.

@logicbomb
Created September 18, 2012 14:12
Show Gist options
  • Save logicbomb/3743363 to your computer and use it in GitHub Desktop.
Save logicbomb/3743363 to your computer and use it in GitHub Desktop.
public class MyModule : NancyModule
{
public MyModule()
{
// this occasionally causes OutOfRangeException
Get["/{id}"] => x => getView(x.Id);
// this works without issue
Get["/{id}"] => x => getView((Guid)x.Id);
}
private getView(Guid id)
{
return "View";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment