コード例 #1
0
 public static List <Models.Forums> GetLastForums(int top, int skip = 0)
 {
     using (PetaPoco.Database db = new PetaPoco.Database("sqlconnection"))
     {
         return(db.SkipTake <Models.Forums>(skip, top, "where is_hidden=0  order by is_top desc,addtime DESC").ToList());
     }
 }
コード例 #2
0
ファイル: ForumDataProvider.cs プロジェクト: tangfd405/XBBS
 public static List <Models.Forums> GetLastForums(int top, int skip = 0)
 {
     using (PetaPoco.Database db = new PetaPoco.Database("sqlconnection"))
     {
         return(db.SkipTake <Models.Forums>(skip, top, "  ORDER BY addtime DESC").ToList());
     }
 }
コード例 #3
0
ファイル: ForumDataProvider.cs プロジェクト: ouyang90/XBBS
 public static List<Models.Forums> GetLastForums(int top, int skip = 0)
 {
     using (PetaPoco.Database db = new PetaPoco.Database("sqlconnection"))
     {
         return db.SkipTake<Models.Forums>(skip, top, "  ORDER BY addtime DESC").ToList();
     }
 }