Capitalize search string 'Ghost' in URL segment (#6421)

Since the searching method in SQLite is case-sensative, the example should pass the search string in the correct case.
pull/6426/head
wooleyra 2018-05-14 23:17:22 -05:00 committed by Rick Anderson
parent 8e628b423c
commit 4a6c13dd8a
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ Navigate to the Movies page and append a query string such as `?searchString=Gho
![Index view](search/_static/ghost.png)
If the following route template is added to the Index page, the search string can be passed as a URL segment (for example, `http://localhost:5000/Movies/ghost`).
If the following route template is added to the Index page, the search string can be passed as a URL segment (for example, `http://localhost:5000/Movies/Ghost`).
```cshtml
@page "{searchString?}"