是否有将SQL模式转换为Korma实体的工具?
最佳答案
还没有,但是您可以查询DBMS的数据字典以开始使用。
例如,在MySQL上,您可以从以下内容开始:
select concat('(defentity ', t.table_name ,')') as defentity
from information_schema.tables t
where table_schema = 'mySchema';
关于sql - 用于SQL模式到Korma实体的代码生成工具,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11434730/