From 8aa09a2fff186bb2fe9af0007901f4e2e52d76ea Mon Sep 17 00:00:00 2001 From: Andrew Zipperer <47086307+zipperer@users.noreply.github.com> Date: Thu, 1 Feb 2024 13:17:47 -0600 Subject: [PATCH] edit search.md: in Note that describes LINQ Contains and SQLite case (in)sensitivity, include links in the Note instead of outside (#31641) --- aspnetcore/tutorials/razor-pages/search.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aspnetcore/tutorials/razor-pages/search.md b/aspnetcore/tutorials/razor-pages/search.md index 9036330e9e..510a31d18c 100644 --- a/aspnetcore/tutorials/razor-pages/search.md +++ b/aspnetcore/tutorials/razor-pages/search.md @@ -52,10 +52,10 @@ The `s => s.Title.Contains()` code is a [Lambda Expression](/dotnet/csharp/progr > [!NOTE] > The method is run on the database, not in the C# code. The case sensitivity on the query depends on the database and the collation. On SQL Server, `Contains` maps to [SQL LIKE](/sql/t-sql/language-elements/like-transact-sql), which is case insensitive. SQLite with the default collation is a mixture of case sensitive and case ***IN***sensitive, depending on the query. For information on making case insensitive SQLite queries, see the following: - -* [This GitHub issue](https://github.com/dotnet/efcore/issues/11414) -* [This GitHub issue](https://github.com/dotnet/AspNetCore.Docs/issues/22314) -* [Collations and Case Sensitivity](/ef/core/miscellaneous/collations-and-case-sensitivity) +> +> * [How to use case-insensitive query with Sqlite provider? (dotnet/efcore #11414)](https://github.com/dotnet/efcore/issues/11414) +> * [How to make a SQLite column case insensitive (dotnet/AspNetCore.Docs #22314)](https://github.com/dotnet/AspNetCore.Docs/issues/22314) +> * [Collations and Case Sensitivity](/ef/core/miscellaneous/collations-and-case-sensitivity) Navigate to the Movies page and append a query string such as `?searchString=Ghost` to the URL. For example, `https://localhost:5001/Movies?searchString=Ghost`. The filtered movies are displayed.