question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

The associated query to multiple tables

See original GitHub issue
// 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 !

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
JinJieGucommented, Dec 6, 2017

Do objectBox support multiple table queries like SQL?

0reactions
greenrobot-teamcommented, Sep 8, 2020

Please vote for #59.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Querying Multiple Tables in SQL Server | Pluralsight
In this guide, you will learn how to query data from multiple ... In SQL, to fetch data from multiple tables, the join...
Read more >
Querying Multiple Tables in SQL - GeeksforGeeks
Here, we are going to see how to query multiple tables in SQL. For example, here, we will first create a database named...
Read more >
Create a query based on multiple tables - Microsoft Support
Build a select query by using tables with a many-to-many relationship · On the Create tab, in the Queries group, click Query Design....
Read more >
SQL basics: Query multiple tables - TechRepublic
A simple SELECT statement is the most basic way to query multiple tables. You can call more than one table in the FROM...
Read more >
Access: Designing a Multi-table Query - GCF Global
To create a multi-table query: · Select the Query Design command from the Create tab on the Ribbon. · In the dialog box...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found