sql select join progress
This commit is contained in:
@@ -13,7 +13,12 @@
|
||||
|
||||
namespace matador::test {
|
||||
|
||||
struct flight {
|
||||
struct flight
|
||||
{
|
||||
flight() = default;
|
||||
flight(unsigned long id, const sql::entity<airplane> &plane, const std::string &name)
|
||||
: id(id), airplane(plane), pilot_name(name) {}
|
||||
|
||||
unsigned long id{};
|
||||
sql::entity<test::airplane> airplane;
|
||||
std::string pilot_name;
|
||||
|
||||
Reference in New Issue
Block a user