//-------------------------------------------------------------------------------- public virtual int CountReply(int topicId) { return(ForumPost.find("TopicId=" + topicId + " and Status<>" + TopicStatus.Delete).count() - 1); }
public virtual List <ForumPost> GetRecentByApp(int appId, int count) { return(ForumPost.find("AppId=" + appId + " and " + getNonDelCondition()).list(count)); }
public virtual List <ForumPost> GetRecentByApp(int appId, int count) { return(ForumPost.find("AppId=" + appId + " and " + TopicStatus.GetShowCondition()).list(count)); }