-
Notifications
You must be signed in to change notification settings - Fork 306
Closed
Labels
duplicateThis issue or pull request already existsThis issue or pull request already exists
Description
// Customer.java
@Entity
public class Customer {
@Id public long id;
public boolean male;
@Backlink
public ToMany<Order> orders;
}
// Order.java
@Entity
public class Order {
@Id public long id;
public boolean isCash;
public ToOne<Customer> customer;
}
If the tables like this, I want use the DataSubscription
to observer the data which Customer is male and Order isCash? What should I do ?Thank you very much !
Metadata
Metadata
Assignees
Labels
duplicateThis issue or pull request already existsThis issue or pull request already exists