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
parent
8e628b423c
commit
4a6c13dd8a
|
@ -42,7 +42,7 @@ Navigate to the Movies page and append a query string such as `?searchString=Gho
|
||||||
|
|
||||||
![Index view](search/_static/ghost.png)
|
![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
|
```cshtml
|
||||||
@page "{searchString?}"
|
@page "{searchString?}"
|
||||||
|
|
Loading…
Reference in New Issue