You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/tutorials/movie-database-app/part-6.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ The <xref:System.Data.Objects.DataClasses.EntityCollection%601.Contains%2A> meth
62
62
63
63
```diff
64
64
- m => m.Title!.Contains(TitleFilter ?? string.Empty)
65
-
+ m => m.Title!.ToLower().Contains((TitleFilter ?? string.Empty).ToLower());
65
+
+ m => m.Title!.ToLower().Contains((TitleFilter ?? string.Empty).ToLower())
66
66
```
67
67
68
68
For information on the best practices to adopt case insensitive SQLite queries, see the [Additional resources](#additional-resources) section of this article.
0 commit comments