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)
is it possible to have two or more ToMany relations pointing to the same object class?
I am trying to establish a relation between objects like the one below. After adding different Order objects to mainCourses and dessert, when loading the Customer object, both mainCourses and dessert ...
Siddhartha
Votes: 0
Answers: 1
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
Why First parent model reference is getting set as null when adding the same child to second parent using `ObjectBox` in flutter?
I have two objects one parent model have ToOne relation and a child model with ToMany relation back to the parent. Now if I have two parents who are setting their relation to child then the first pare...
minato
Votes: 0
Answers: 0