We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isar v4: I have object with list of Embedded objects. Is it possible to filter result by Embedded object property in list?
The text was updated successfully, but these errors were encountered:
Here is a example code of filtering embedded object.
// use this in main logic final embeddedFiltering = isar.simpleRecords.where().simpleEmbedded((q) => q.dataElementBetween(1, 2)).findAll(); // simple_record.dart @collection class SimpleRecord { late int id = isar.simpleRecords.autoIncrement(); List<int> data = List.generate(1, (i) => i); SimpleEmbedded? simpleEmbedded = SimpleEmbedded(); } @embedded class SimpleEmbedded { List<int> data = List.generate(10, (i) => i); }
Sorry, something went wrong.
No branches or pull requests
isar v4: I have object with list of Embedded objects. Is it possible to filter result by Embedded object property in list?
The text was updated successfully, but these errors were encountered: