python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Objectbox doesn't store nullable value in one to many relation
I have this one to many relation which looks like this.
@Entity()
class Product {
@Id()
int id;
String name;
String category;
int categoryId;
WeightType weightType;
double? price;
doub...
Pokaboom
Votes: 0
Answers: 0
how to add same object in objectbox's box multiple times?
I have ToMany relation which looks like this,
@Entity()
class Pdf {
@Id()
int id;
Uint8List pdfData;
final String customerName;
@Property(type: PropertyType.date)
final DateTime dateTime;
...
Pokaboom
Votes: 0
Answers: 1
Dart ObjectBox nested query not working as expected
I have the ObjectBox database and it is working pretty well. But nested queries not working as expected
List<Channel> _channels({required String lang}) {
final queryBuilder = _channelBox().q...
Muhammad Al-kady
Votes: 0
Answers: 0