我创建了一个名为 Posts 的表。
POSTS |
_____________|
post_id |
parent_id | //reference to post_id
post_type_id | //I have two type
user_id | //reference to user table
我从这个表中创建了一个实体模型。我希望这样:Model.POSTS
但它是这样显示的Model.POSTS1
,Model.POSTS2
这意味着有两个集合。
为什么会这样?是关于 post_type 的吗?POSTS1 = type1
和POSTS2=type2
?