using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; namespace Ant.ORM { public interface SqlQuery { /// /// /// /// /// SqlQuery Select(MakeShowFields colume); /// /// /// /// SqlQuery Select(); /// /// /// /// /// SqlQuery Top(int num); /// /// /// /// /// /// SqlQuery From(string strasname); /// /// /// /// /// SqlQuery Join(MakeJoinTable where); /// /// /// /// /// SqlQuery Where(MakeQueryWhere where); /// /// /// /// /// SqlQuery Group(params string[] strlist); /// /// /// /// /// SqlQuery OrderDesc(params string[] columns); /// /// /// /// /// SqlQuery OrderAsc(params string[] columns); /// /// /// /// /// SqlQuery OrderBy(MakeOrderBy orderBy); /// /// /// /// /// // ResponseModel GetDtList(SqlNote sqlNote, DataAccess db = null); /// /// /// /// /// /// //ResponseModel GetEnSingle(SqlNote sqlNote, DataAccess db = null); /// /// /// /// /// /// // ResponseModel GetEnList(SqlNote sqlNote, DataAccess db = null); /// /// /// /// /// /// /// // ResponseModel GetPageSite(int pageno, int pagesize, SqlNote sqlNote, DataAccess db = null); } }