我有三个模型 Restaurant
Menu Section
餐厅包含
id name
菜单应该只包含 restaurantId
那张唱片 id
节包含 id
name menuId
我如何关联模型,这样,我就有了这样一个结果表
餐厅
Id Name
----- ---------
12 foo
24 bar
菜单
Id restaurantId
----- ------------
A 12
B 24
部分
Id menuId name
----- ------------ -------
S1 A Burgers
S2 A Sandwiches
S3 B Beverages
1条答案
按热度按时间fjnneemd1#
创建表:resturant
创建表:菜单
创建表:sect
现在是丹尼派模特:
同样的方法定义菜单和餐厅表的另外2个模型,然后在下面查询:
现在只需调用上述方法即可使用关联输入数据: