description |
---|
ObjectBox Relations: Learn how to create and update to-one and to-many relations between entities in ObjectBox and improve performance. |
{% hint style="info" %} Prefer to dive right into code? Check out our
- Kotlin Android example app using relations,
- Java relations playground Android app,
- Flutter relations example app. {% endhint %}
{% hint style="info" %} The Python API does not yet support relations. {% endhint %}
Objects may reference other objects, for example using a simple reference or a list of objects. In database terms, we call those references relations. The object defining a relation we call the source object, the referenced object we call the target object. So a relation has a direction.
If there is one target object, we call the relation to-one. And if there can be multiple target objects, we call it to-many. Relations are lazily initialized: the actual target objects are fetched from the database when they are first accessed. Once the target objects are fetched, they are cached for further accesses.
To-one Relations
You define a to-one relation using the ToOne
class, a smart proxy to the target object. It gets and caches the target object transparently. For example, an order is typically made by one customer. Thus, we could model the Order
class to have a to-one relation to the Customer
like this:
{% tabs %} {% tab title="Java" %}
// Customer.java
@Entity
public class Customer {
@Id public long id;
}
// Order.java
@Entity
public class Order {
@Id public long id;
public ToOne<Customer> customer;
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class Customer(
@Id var id: Long = 0
)
@Entity
data class Order(
@Id var id: Long = 0
) {
lateinit var customer: ToOne<Customer>
}
{% hint style="info" %} For Kotlin desktop (Linux, macOS, Windows) apps, additional code is required. See #initialization-magic. {% endhint %} {% endtab %}
{% tab title="Dart" %}
@Entity()
class Customer {
int id;
}
@Entity()
class Order {
int id;
final customer = ToOne<Customer>();
}
{% endtab %} {% endtabs %}
Now let’s add a customer and some orders. To set the related customer object, call setTarget()
(or assign target
in Kotlin) on the ToOne instance and put the order object:
{% tabs %} {% tab title="Java" %}
Customer customer = new Customer();
Order order = new Order();
order.customer.setTarget(customer);
// Puts order and customer:
long orderId = boxStore.boxFor(Order.class).put(order);
{% endtab %}
{% tab title="Kotlin" %}
val customer = Customer()
val order = Order()
order.customer.target = customer
// Puts order and customer:
val orderId = boxStore.boxFor(Order::class.java).put(order)
{% endtab %}
{% tab title="Dart" %}
final customer = Customer();
final order = Order();
// set the relation
order.customer.target = customer;
// Or you could create the target object in place:
// order.customer.target = Customer();
// Save the order and customer to the database
int orderId = store.box<Order>().put(order);
{% endtab %} {% endtabs %}
If the customer object does not yet exist in the database (i.e. its ID is zero), ToOne
will put it (so there will be two puts, one for Order
, one for Customer
). If it already exists, ToOne
will only create the relation (so there's only one put for Order
, as explicitly written in the code). See further below for details about updating relations.
{% hint style="info" %}
Note: if your related entity uses self-assigned IDs with @Id(assignable = true)
ObjectBox won't know if a target object is a new one or an existing one, therefore it will NOT insert it, you would have to call customerBox.put(customer)
manually (considering the previous example). See below about updating ToOne for details.
{% endhint %}
Have a look at the following code how you can get (read) the customer of an order:
{% tabs %} {% tab title="Java" %}
Order order = boxStore.boxFor(Order.class).get(orderId);
Customer customer = order.customer.getTarget();
{% endtab %}
{% tab title="Kotlin" %}
val order = boxStore.boxFor(Order::class.java)[orderId]
val customer = order.customer.target
{% endtab %}
{% tab title="Dart" %}
final order = store.box<Order>().get(orderId);
final customer = order.customer.target;
{% endtab %} {% endtabs %}
This will do a database call on the first access (lazy loading). It uses lookup by ID, which is very fast in ObjectBox. If you only need the ID instead of the whole target object, you can completely avoid this database operation because it's already loaded: use order.customer.targetId/getTargetId()
.
We can also remove the relationship to a customer:
{% tabs %} {% tab title="Java" %}
order.customer.setTarget(null);
boxStore.boxFor(Order.class).put(order);
{% endtab %}
{% tab title="Kotlin" %}
order.customer.target = null
boxStore.boxFor(Order::class.java).put(order)
{% endtab %}
{% tab title="Dart" %}
order.customer.target = null; // same as .targetId = 0;
store.box<Order>().put(order);
{% endtab %} {% endtabs %}
Note that this does not remove the customer from the database, it just dissolves the relationship.
If you look at your model in objectbox-models/default.json
(or lib/bjectbox-model.json
in Dart) you can see, a ToOne property is not actually stored. Instead, the ID of the target object is saved in a virtual property named like the ToOne property appended with Id.
{% hint style="info" %} Only Java/Kotlin {% endhint %}
You can directly access the target ID property by defining a long
(or Long
in Kotlin) property in your entity class with the expected name:
{% tabs %} {% tab title="Java" %}
@Entity
public class Order {
@Id public long id;
public long customerId; // ToOne target ID property
public ToOne<Customer> customer;
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class Order(
@Id var id: Long = 0,
var customerId: Long = 0
) {
lateinit var customer: ToOne<Customer>
}
{% endtab %} {% endtabs %}
You can change the name of the expected target ID property by adding the @TargetIdProperty(String) annotation to a ToOne.
{% hint style="info" %} Only Java/Kotlin {% endhint %}
Did you notice that the ToOne
field customer
was never initialized in the code example above? Why can the code still use customer
without any NullPointerException? Because the field actually is initialized – the initialization code just is not visible in your sources.
The ObjectBox Gradle plugin will transform your entity class (supported for Android projects and Java JVM projects) to do the proper initialization in constructors before your code is executed. Thus, even in your constructor code, you can just assume ToOne
and ToMany
/ List
properties have been initialized and are ready for you to use.
{% hint style="info" %}
If your setup does not support transformations, currently Kotlin JVM (Linux, macOS, Windows) projects, add the below modifications yourself. You also will have to call box.attach(entity)
before modifying ToOne or ToMany properties.
{% endhint %}
{% tabs %} {% tab title="Java" %}
@Entity
public class Example {
// Initialize ToOne and ToMany manually.
ToOne<Order> order = new ToOne<>(this, Example_.order);
ToMany<Order> orders = new ToMany<>(this, Example_.orders);
// Add a BoxStore field.
transient BoxStore __boxStore;
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
class Example() {
// Initialize ToOne and ToMany manually.
var order = ToOne<Order>(this, Example_.order)
var orders = ToMany<Order>(this, Example_.orders)
// Add a BoxStore field.
@JvmField
@Transient
@Suppress("PropertyName")
var __boxStore: BoxStore? = null
}
{% endtab %} {% endtabs %}
{% hint style="info" %} Only Java/Kotlin {% endhint %}
To improve performance when ObjectBox constructs your entities, you should provide an all-properties constructor.
For a ToOne you have to add an id parameter, typically named like the ToOne field appended with Id
. Check your objectbox-models/default.json
file to find the correct name.
An example:
@Entity
public class Order {
@Id public long id;
public ToOne<Customer> customer;
public Order() { /* default constructor */ }
public Order(long id, long customerId /* virtual ToOne id property */) {
this.id = id;
this.customer.setTargetId(customerId);
}
}
To define a to-many relation, you can use a property of type ToMany
. As the ToOne class, the ToMany
class helps you to keep track of changes and to apply them to the database.
Note that to-many relations are resolved lazily on first access, and then cached in the source entity inside the ToMany
object. So subsequent calls to any method, like size()
of the ToMany
, do not query the database, even if the relation was changed elsewhere. To get the latest data fetch the source entity again or call reset()
on the ToMany
.
There is a slight difference if you require a one-to-many (1:N) or many-to-many (N:M) relation. A 1:N relation is like the example above where a customer can have multiple orders, but an order is only associated with a single customer. An example for an N:M relation is students and teachers: students can have classes by several teachers but a teacher can also instruct several students.
One-to-Many (1:N)
To define a one-to-many relation, you need to annotate your relation property with @Backlink
. It links back to a to-one relation in the target object. Using the customer and orders example, we can modify the customer class to have a to-many relation to the customer's orders:
{% tabs %} {% tab title="Java" %}
// Customer.java
@Entity
public class Customer {
@Id public long id;
@Backlink(to = "customer")
public ToMany<Order> orders;
}
// Order.java
@Entity
public class Order {
@Id public long id;
public String name;
public ToOne<Customer> customer;
public Order(String name) {
this.name = name;
}
public Order() {
}
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class Customer(
@Id var id: Long = 0
) {
@Backlink(to = "customer")
lateinit var orders: ToMany<Order>
}
@Entity
data class Order(
@Id var id: Long = 0,
var name: String? = ""
) {
lateinit var customer: ToOne<Customer>
}
{% hint style="info" %} For Kotlin desktop (Linux, macOS, Windows) apps, additional code is required. See #initialization-magic. {% endhint %} {% endtab %}
{% tab title="Dart" %}
@Entity()
class Customer {
int id;
@Backlink('customer')
final orders = ToMany<Order>();
}
@Entity()
class Order {
int id;
final customer = ToOne<Customer>();
}
{% endtab %} {% endtabs %}
{% hint style="info" %}
When using @Backlink
it is recommended to explicitly specify the linked to relation using to
. It is possible to omit this if there is only one matching relation. However, it helps with code readability and avoids a compile-time error if at any point another matching relation is added (in the above case, if another ToOne<Customer>
is added to the Order class).
{% endhint %}
Let’s add some orders together with a new customer. ToMany
implements the Java List interface, so we can simply add orders to it:
{% tabs %} {% tab title="Java" %}
Customer customer = new Customer();
customer.orders.add(new Order("Order #1"));
customer.orders.add(new Order("Order #2"));
// Puts customer and orders:
long customerId = boxStore.boxFor(Customer.class).put(customer);
{% endtab %}
{% tab title="Kotlin" %}
val customer = Customer()
customer.orders.add(Order("Order #1"))
customer.orders.add(Order("Order #2"))
// Puts customer and orders:
val customerId = boxStore.boxFor(Customer::class.java).put(customer)
{% hint style="info" %}
Two data classes that have the same property values (excluding those defined in the class body) are equal and have the same hash code. Keep this in mind when working with ToMany
which uses a HashMap
to keep track of changes. E.g. adding the same data class multiple times has no effect, it is treated as the same entity.
{% endhint %}
{% endtab %}
{% tab title="Dart" %}
Customer customer = Customer();
customer.orders.add(Order()); // Order #1
customer.orders.add(Order()); // Order #2
// Puts customer and orders:
final customerId = store.box<Customer>().put(customer);
{% endtab %} {% endtabs %}
If the order entities do not yet exist in the database, ToMany
will put them. If they already exist, it will only create the relation (but not put them). See further below for details about updating relations.
{% hint style="info" %}
Note: if your entities use self-assigned IDs with @Id(assignable = true)
the above will not work. See below about updating ToMany for details.
{% endhint %}
We can easily get the orders of a customer back by accessing the list of orders:
{% tabs %} {% tab title="Java" %}
Customer customer = boxStore.boxFor(Customer.class).get(customerId);
for (Order order : customer.orders) {
// Do something with each order.
}
{% endtab %}
{% tab title="Kotlin" %}
val customer = boxStore.boxFor(Customer::class.java).get(customerId)
for (order in customer.orders) {
// Do something with each order.
}
{% endtab %}
{% tab title="Dart" %}
Customer customer = store.box<Customer>().get(customerId);
// you can use any List<> functions, for example:
final valueSum = customer.orders.fold(0, (sum, order) => sum + order.value);
// though you could use property queries and their .sum() function for that
{% endtab %} {% endtabs %}
Removing orders from the relation works as expected:
{% tabs %} {% tab title="Java" %}
// Remove the relation to the first order in the list
Order order = customer.orders.remove(0);
boxStore.boxFor(Customer.class).put(customer);
// Optional: also remove the order entity from its box:
// boxStore.boxFor(Order.class).remove(order);
{% endtab %}
{% tab title="Kotlin" %}
// Remove the relation to the first order in the list
val order = customer.orders.removeAt(0)
boxStore.boxFor(Customer::class.java).put(customer)
// Optional: also remove the order entity from its box:
// boxStore.boxFor(Order::class.java).remove(order)
{% endtab %}
{% tab title="Dart" %}
// Remove the relation to the first order in the list
Order order = customer.orders.removeAt(0);
store.box<Customer>().put(customer);
// Optional: also remove the order entity from its box:
// store.box<Order>().remove(order);
{% endtab %} {% endtabs %}
Many-to-Many (N:M)
To define a many-to-many relation you simply add a property using the ToMany
class. Assuming a students and teachers example, this is how a simple student class that has a to-many relation to teachers can look like:
{% tabs %} {% tab title="Java" %}
// Teacher.java
@Entity
public class Teacher{
@Id public long id;
public String name;
public Teacher(String name) {
this.name = name;
}
public Teacher() {
}
}
// Student.java
@Entity
public class Student{
@Id public long id;
public ToMany<Teacher> teachers;
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class Teacher(
@Id var id: Long = 0,
var name: String? = ""
)
@Entity
data class Student(
@Id var id: Long = 0
) {
lateinit var teachers: ToMany<Teacher>
}
{% hint style="info" %} For Kotlin desktop (Linux, macOS, Windows) apps, additional code is required. See #initialization-magic. {% endhint %} {% endtab %}
{% tab title="Dart" %}
@Entity()
class Teacher{
int id;
}
@Entity()
class Student{
int id;
final teachers = ToMany<Teacher>();
}
{% endtab %} {% endtabs %}
Adding the teachers of a student works exactly like with a list:
{% tabs %} {% tab title="Java" %}
Teacher teacher1 = new Teacher("Teacher 1");
Teacher teacher2 = new Teacher("Teacher 2");
Student student1 = new Student();
student1.teachers.add(teacher1);
student1.teachers.add(teacher2);
Student student2 = new Student();
student2.teachers.add(teacher2);
// Puts students and teachers:
boxStore.boxFor(Student.class).put(student1, student2);
{% endtab %}
{% tab title="Kotlin" %}
val teacher1 = Teacher("Teacher 1")
val teacher2 = Teacher("Teacher 2")
val student1 = Student()
student1.teachers.add(teacher1)
student1.teachers.add(teacher2)
val student2 = Student()
student2.teachers.add(teacher2)
// Puts students and teachers:
boxStore.boxFor(Student::class.java).put(student1, student2)
{% endtab %}
{% tab title="Dart" %}
Teacher teacher1 = Teacher();
Teacher teacher2 = Teacher();
Student student1 = Student();
student1.teachers.add(teacher1);
student1.teachers.add(teacher2);
Student student2 = Student();
student2.teachers.add(teacher2);
// saves students as well as teachers in the database
store.box<Student>().putMany([student1, student2]);
{% endtab %} {% endtabs %}
If the teacher entities do not yet exist in the database, ToMany
will also put them. If they already exist, ToMany
will only create the relation (but not put them). See further below for details about updating relations.
{% hint style="info" %}
Note: if your entities use self-assigned IDs with @Id(assignable = true)
the above will not work. See below about updating ToMany for details.
{% endhint %}
To get the teachers of a student we just access the list:
{% tabs %} {% tab title="Java" %}
Student student = boxStore.boxFor(Student.class).get(studentId);
for (Teacher teacher : student.teachers) {
// Do something with each teacher.
}
{% endtab %}
{% tab title="Kotlin" %}
val student = boxStore.boxFor(Student::class.java).get(studentId)
for (teacher in student.teachers) {
// Do something with each teacher.
}
{% endtab %}
{% tab title="Dart" %}
Student student = store.box<Student>().get(studentId);
// you can use any List<> functions, for example:
student.teachers.forEach((Teacher teacher) => ...);
{% endtab %} {% endtabs %}
And if a student drops out of a class, we can remove a teacher from the relation:
{% tabs %} {% tab title="Java" %}
student.teachers.remove(0);
// Simply put the student again:
// boxStore.boxFor(Student.class).put(student);
// Or more efficient (than writing the thole object), store just the relations:
student.teachers.applyChangesToDb();
{% endtab %}
{% tab title="Kotlin" %}
student.teachers.removeAt(0)
// Simply put the student again:
// boxStore.boxFor(Student::class.java).put(student)
// Or more efficient (than writing the thole object), store just the relations:
student.teachers.applyChangesToDb()
{% endtab %}
{% tab title="Dart" %}
student.teachers.removeAt(0)
// Simply put the student again:
// store.box<Student>().put(student);
// Or more efficient (than writing the thole object), store just the relations:
student.teachers.applyToDb();
{% endtab %} {% endtabs %}
Following the above example, you might want an easy way to find out what students a teacher has. Instead of having to perform a query, you can just add a to-many relation to the teacher and annotate it with the @Backlink
annotation:
{% tabs %} {% tab title="Java" %}
// Teacher.java
@Entity
public class Teacher{
@Id public long id;
// Backed by the to-many relation in Student:
@Backlink(to = "teachers")
public ToMany<Student> students;
}
// Student.java
@Entity
public class Student{
@Id public long id;
public ToMany<Teacher> teachers;
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class Teacher(
@Id var id: Long = 0
) {
// Backed by the to-many relation in Student:
@Backlink(to = "teachers")
lateinit var students: ToMany<Student>
}
@Entity
data class Student(
@Id var id: Long = 0
) {
lateinit var teachers: ToMany<Teacher>
}
{% hint style="info" %} For Kotlin desktop (Linux, macOS, Windows) apps, additional code is required. See #initialization-magic. {% endhint %} {% endtab %}
{% tab title="Dart" %}
@Entity()
class Teacher{
int id;
// Backed by the to-many relation in Student:
@Backlink()
final students = ToMany<Student>();
}
@Entity()
public class Student{
int id;
final teachers = ToMany<Teacher>();
}
{% endtab %} {% endtabs %}
{% hint style="info" %} Only for Java/Kotlin {% endhint %}
Instead of the ToMany
type it is also possible to use List
(or MutableList
in Kotlin) for a to-many property. At runtime the property will still be a ToMany
instance (ToMany
does implement the List
interface) due to the initialization magic described above, or if manually initialized as seen in the example below.
{% tabs %} {% tab title="Java" %}
// Teacher.java
@Entity
public class Teacher{
@Id public long id;
}
// Student.java
@Entity
public class Student{
@Id public long id;
public List<Teacher> teachers = new ToMany<>(this, Student_.teachers);
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class Teacher(
@Id var id: Long = 0
)
@Entity
data class Student(
@Id var id: Long = 0
) {
var teachers: MutableList<Teacher> = ToMany<>(this, Student_.teachers)
}
{% endtab %} {% endtabs %}
{% hint style="info" %}
This may be helpful when trying to deserialize an object that contains a to-many from JSON. However, note that if the JSON deserializer replaces the ToMany
instance with e.g. an ArrayList
during put the to-many property is skipped. It is then up to you to create the relation.
{% endhint %}
Box<Student> studentBox = store.boxFor(Student.class);
Student student = new Student();
Teacher teacher = new Teacher();
// Simulate what a JSON deserialzer would do:
// replace ToMany instance with ArrayList.
student.teachers = new ArrayList();
student.teachers.add(teacher);
// Put will skip the teachers property.
studentBox.put(student);
System.out.println(store.boxFor(Teacher.class).count());
// prints 0
// Need to manually create the relation.
Student student2 = studentBox.get(student.id);
student2.teachers.addAll(student.teachers);
studentBox.put(student2);
The ToOne and ToMany relation classes assist you to persist the relation state. They keep track of changes and apply them to the database once you put the Object containing them. ObjectBox supports relation updates for new (not yet persisted; ID == 0) and existing (persisted before; ID != 0) Objects.
For convenience, ToOne and ToMany will put Objects added to them if they do not yet exist (ID == 0). If they already exist (their ID != 0, or you are using @Id(assignable = true)
), only the relation will be created or destroyed (internally the Object ID is added to or removed from the relation). In that case, to put changes to the properties of related Objects use their specific Box instead:
{% tabs %} {% tab title="Java" %}
// update a related entity using its box
Order orderToUpdate = customer.orders.get(0);
orderToUpdate.text = "Revised description";
// DOES NOT WORK
// boxStore.boxFor(Customer.class).put(customer);
// WORKS
boxStore.boxFor(Order.class).put(orderToUpdate);
{% endtab %}
{% tab title="Kotlin" %}
// update a related entity using its box
Order orderToUpdate = customer.orders.getAt(0);
orderToUpdate.text = "Revised description";
// DOES NOT WORK
// boxStore.boxFor(Customer::class.java).put(customer);
// WORKS
boxStore.boxFor(Order::class.java).put(orderToUpdate);
{% endtab %}
{% tab title="Dart" %}
// update a related entity using its box
Order orderToUpdate = customer.orders[0];
orderToUpdate.text = 'Revised description';
// DOES NOT WORK - the change to the order is not saved
// store.box<Customer>().put(customer);
// WORKS
store.box<Order>().put(orderToUpdate);
{% endtab %} {% endtabs %}
The ToOne class offers the following methods to update the relation:
setTarget(target)
makes the given (new or existing) Object the new relation target; passnull
to clear the relation.setTargetId(targetId)
sets the relation target based on the given ID of an existing Object; pass0
(zero) to clear the relation.- Java/Kotlin only:
setAndPutTarget(target)
makes the given (new or existing) Object the new relation target and puts the owning, source Object and if needed the target Object.
{% tabs %} {% tab title="Java" %}
// Option 1: set target and put.
order.customer.setTarget(customer);
// Or set target via Object ID:
// order.customer.setCustomerId(customer.getId());
orderBox.put(order);
// Option 2: combined set target and put.
order.customer.setAndPutTarget(customer);
{% endtab %}
{% tab title="Kotlin" %}
// Option 1: set target and put.
order.customer.setTarget(customer)
// Or set target via Object ID:
// order.customer.setCustomerId(customer.getId())
orderBox.put(order)
// Option 2: combined set target and put.
order.customer.setAndPutTarget(customer)
{% endtab %} {% endtabs %}
{% hint style="warning" %}
Note: attach the Box before calling setAndPutTarget()
on a new (not put) Object owning a ToOne:
Order order = new Order();
orderBox.attach(order);
order.customer.setAndPutTarget(customer);
{% endhint %}
{% hint style="warning" %}
Note: if the target Object uses self-assigned IDs with @Id(assignable = true)
it will not be put when the Object that owns the relation is put:
Customer customer = new Customer();
// If ID is self-assigned, put target Object first
customer.id = 12;
customerBox.put(customer);
// Then can safely set as target
order.customer.setTarget(customer);
// Or set target via Object ID
// order.customer.setCustomerId(customer.getId());
orderBox.put(order);
This is because ObjectBox only puts related entities with an ID of 0. See the documentation about IDs for background information. {% endhint %}
The ToMany
relation class is based on a standard List
with added change tracking for Objects. As mentioned above, it will put new Objects (ID == 0) that are added to it once the Object owning it is put. And when removing Objects from it, just the relation is cleared, the Objects are not removed from their Box.
See the documentation on One-to-Many and Many-to-Many above for details.
{% hint style="warning" %}
Note (Java/Kotlin only): if your entities are using self-assigned IDs with @Id(assignable = true)
additional steps are required. Read on for details:
{% endhint %}
If the owning, source Object uses @Id(assignable = true)
attach its Box before modifying its ToMany:
// If source has self-assigned ID attach Box first
customer.id = 12;
customerBox.attach(customer);
// Then can safely modify ToMany
customer.orders.add(order);
customerBox.put(customer);
If the target Object, like Order
above, is using self-assigned IDs put the target Objects before adding them to the ToMany relation:
// If ID is self-assigned put target Object first
order.id = 42;
orderBox.put(order);
// Then can safely add target Object to ToMany
customer.orders.add(order);
customerBox.put(customer);
The above steps are required because, when putting the Object owning the ToMany only the relation is updated. This is because ObjectBox only puts target Objects with an ID of 0. See the documentation about IDs for the background information.
A typical extension to the customer/order example we have started earlier would be to add an Address
type. While you could model street, ZIP and so on directly into Customer
, it usually makes sense to normalize that out into a separate entity. And when you think about the usual shopping sites, they all let you have multiple addresses...
So, typically, this is how you would model that:
- an address is bound to a customer; add a
ToOne<Customer> customer
toAddress
- an order is shipped to one address, and might have a diverging billing address optionally; add
ToOne<Address> shippingAddress
andToOne<Address> billingAddress
toOrder
- For each
ToOne
you could have a matchingToMany
on the other side of the relation (backlink)
You can model a tree relation with a to-one and a to-many relation pointing to itself:
{% tabs %} {% tab title="Java" %}
@Entity
public class TreeNode {
@Id long id;
ToOne<TreeNode> parent;
@Backlink
ToMany<TreeNode> children;
}
{% endtab %}
{% tab title="Kotlin" %}
@Entity
data class TreeNode(
@Id var id: Long = 0
) {
lateinit var parent: ToOne<TreeNode>
@Backlink
lateinit var children: ToMany<TreeNode>
}
{% hint style="info" %} For Kotlin desktop (Linux, macOS, Windows) apps, additional code is required. See #initialization-magic. {% endhint %} {% endtab %} {% endtabs %}
This lets you navigate a tree nodes parent and children:
{% tabs %} {% tab title="Java" %}
TreeNode parent = treeNode.parent.getTarget();
List<TreeNode> children = treeNode.children;
{% endtab %}
{% tab title="Kotlin" %}
val parent: TreeNode = treeNode.parent.target
val children: List<TreeNode> = treeNode.children
{% endtab %} {% endtabs %}