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)
How to pre populate generated files in Code Magic for flutter
I am trying to use object box in flutter application. It gives two files on pub run one objectbox.g.dart and other one objectbox-model.json.
The former file is ignored in gitignore.
Now that we are tr...
raphire
Votes: 0
Answers: 1
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