0
我創建了一個名爲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
?
你看過映射嗎? Model.POSTS2映射到什麼? – CodingGorilla
它們也映射到帖子。 –