我請教大家這個平常的問題怎麼處理的

wisedragon發表於2006-09-10
比如:論壇的帖子類 Topic, 會關聯一個使用者類 User
public Class Topic //論壇帖子類
{
private User postuser;
.......................
}

在資料訪問層裡 TopicDAO 兩個方法: GetTopicById(int id) GetTopicList

Topic 類的 postuser 大家怎麼從資料庫取得的. 用UserDAO 呼叫 GetUserById(int id)

還是直接從: 直接從SQL語句 連線 user 表(select * from topic join user on topic.postuser=user.id where topic.id=id ) 設定 Topic 類的 Postuser 屬性呢

謝謝

相關文章