Esempio n. 1
0
 public DataPage <MicroblogComment> GetPageByUser(int ownerId, int pageSize)
 {
     return(MicroblogComment.findPage("UserId=" + ownerId));
 }
Esempio n. 2
0
 public virtual DataPage <MicroblogComment> GetComments(int id, int pageSize)
 {
     return(MicroblogComment.findPage("RootId=" + id, pageSize));
 }
 public virtual DataPage <MicroblogComment> GetSysPage(int pageSize)
 {
     return(MicroblogComment.findPage("", pageSize));
 }