diff --git a/docs/content/en/_index.html b/docs/content/en/_index.html index 5c64fc9f..b449313f 100644 --- a/docs/content/en/_index.html +++ b/docs/content/en/_index.html @@ -8,7 +8,7 @@ linkTitle: "Moor" {{< blocks/cover title="Moor: Persistence library for Dart" image_anchor="top" height="med" color="indigo" >}}
}}"> - Learn More + Learn moor Get fom pub diff --git a/moor/lib/src/runtime/query_builder/expressions/text.dart b/moor/lib/src/runtime/query_builder/expressions/text.dart index b5266730..cdb8b2f2 100644 --- a/moor/lib/src/runtime/query_builder/expressions/text.dart +++ b/moor/lib/src/runtime/query_builder/expressions/text.dart @@ -19,6 +19,8 @@ extension StringExpressionOperators on Expression { /// Whether this expression contains [substring]. /// + /// Note that this is case-insensitive for the English alphabet only. + /// /// This is equivalent to calling [like] with `%%`. Expression contains(String substring) { return like('%$substring%');