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: docs/tinyorm/collections.mdx
+2-2
Original file line number
Diff line number
Diff line change
@@ -1315,7 +1315,7 @@ auto filtered = users.whereNotNull("name");
1315
1315
```
1316
1316
1317
1317
:::note
1318
-
The `NullVariant` class returns the correct `null` QVariant for both Qt 5 `QVariant(QVariant::String)` and also Qt 6 `QVariant(QMetaType(QMetaType::QString))`.
1318
+
The `NullVariant` class returns the correct `null` QVariant for both Qt 5 `QVariant(QVariant::String)` and also Qt 6 `QVariant(QMetaType(QMetaType::QString))`. The reason why this class still exists even after Qt v5.15 support was removed is the performance boost.
1319
1319
:::
1320
1320
1321
1321
#### `whereNull()` {#method-wherenull}
@@ -1339,7 +1339,7 @@ auto filtered = users.whereNotNull("name");
1339
1339
```
1340
1340
1341
1341
:::note
1342
-
The `NullVariant` class returns the correct `null` QVariant for both Qt 5 `QVariant(QVariant::String)` and also Qt 6 `QVariant(QMetaType(QMetaType::QString))`.
1342
+
The `NullVariant` class returns the correct `null` QVariant for both Qt 5 `QVariant(QVariant::String)` and also Qt 6 `QVariant(QMetaType(QMetaType::QString))`. The reason why this class still exists even after Qt v5.15 support was removed is the performance boost.
0 commit comments