``` [FromRoute] public string Foo {get;set;} ``` With this route: ``` @page "{Foo}" ``` Foo is empty, however I can access the value with `RouteData.Values["Foo"]`
With this route:
Foo is empty, however I can access the value with
RouteData.Values["Foo"]