我创建了一个名为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
?
答案 0 :(得分:0)
我很抱歉他们映射到了不同的地方。 Post1是一个集合Post2是一个对象。这意味着,如果帖子是儿童,则指的是父母一方。如果post是parent,则引用它的childs(collection)。