-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
不支持嵌套数据结构吗? #18
Comments
支持嵌套,你看下iguana里的例子 |
....\database\ormpp-master/utility.hpp:88:57: error: no matching function for call to 'type_to_name(ormpp::identity<Title>)' |
REFLECTION(person, id, name, age,title) 直接报错, |
title也要写reflection |
struct Title struct person ....\database\ormpp-master/utility.hpp:88:57: error: no matching function for call to 'type_to_name(ormpp::identity<Title>)' 我已经reflection了, |
ormpp不支持结构体嵌套,ormpp里面的结构体和数据库表是对应的,不应该有嵌套情况。iguana序列化本身是支持嵌套的。 |
那是不是太局限了? |
数据库的表本身不能嵌套其他表啊,你加嵌套上去做什么呢,加上去了没法和数据表做映射了。 |
恩,这是个好问题。很多人不关心数据库如何存,存什么格式。只关心,存对应的数据结构和能取出对应的结构体, |
在ruby on rails里,数据表A里嵌套另一个数据表B的时候,指的是A的字段里有B的ID,在查询A的时候,顺便也根据A里B_id的值,把B查询出来.
如果这样对应has_one关联的话,person的title字段实际存的是一个int,值为对应Title表里的一个记录的主键id 相关介绍可见 如果能实现这样的操作,数据库相关的操作真的就非常方便了 |
这个库做了相应尝试,不过看起来使用起来太繁琐. https://github.com/bmuller/StactiveRecord |
结构体中包含枚举类型也不行吗?我有一个同样的结构体,里面加了一个enum类型,然后就报这个错了,不加的时候是对的。 |
什么错误? |
|
哈哈,你的建议很好,其实这些都可以支持,只不过目前主要精力在雅兰亭库和cinatra c++20 协程重构上,等这两个差不多了就可以再来重构优化ormpp了。 |
struct Title
{
int t;
std::string code;
};
struct person
{
int id;
std::string name;
int age;
Title title;
};
这时候 REFLECTION是什么样子的?
The text was updated successfully, but these errors were encountered: