How to define table name
As i understand QxOrm gets table name from business model name. I use camel case formating in my project and want to use different model name from database table name. How can i set table name from business model?
QxOrm : ORM (Object Relational Mapping) C++ library - QxEntityEditor : graphic editor for QxOrm library
http://www.qxorm.com/forum/phpbb/
Can i use http://www.qxorm.com/doxygen/html/class ... 97b18400f6 this for it (setName function)?
namespace qx {
template <> void register_class(QxClass<my_class> & t)
{
t.setName("TABLE_NAME");
//...
}}