Nut icon indicating copy to clipboard operation
Nut copied to clipboard

Table with same struct.

Open soyoo opened this issue 4 years ago • 1 comments

class IDatabase : public Nut::Database { Q_OBJECT

NUT_DB_VERSION(1)

NUT_DECLARE_TABLE(Network, a)
NUT_DECLARE_TABLE(Network, b)
NUT_DECLARE_TABLE(Network, c)
NUT_DECLARE_TABLE(Network, d)

};

It seems that if tables have the same table struct, a()、b()、c() will always operate on the table 'a'.

soyoo avatar Mar 26 '20 04:03 soyoo

Wip

HamedMasafi avatar Jul 31 '20 11:07 HamedMasafi