示例#1
0
 /// <summary>
 /// 根据条件获取列表 GetList(string strWhere,string orderBy=null)
 /// </summary>
 /// <param name="strWhere">strWhere</param>
 /// <param name="orderBy">orderBy</param>
 /// <returns>返回List(BlogInfo)类型数据,未查询到数据则返回null</returns>
 public List <BlogInfo> GetList(string strWhere, string orderBy = null)
 {
     return(_blog.GetList(strWhere, orderBy));
 }