using System; using System.Collections.Generic; using System.Text; namespace SqlSugar { public partial interface ISugarQueryable { ISugarQueryable Having(IFuncModel model); ISugarQueryable OrderBy(List models); ISugarQueryable GroupBy(List models); ISugarQueryable Select(List models); ISugarQueryable Select(List models); ISugarQueryable Select(List models,AsNameFormatType type); ISugarQueryable AS(string tableName, string shortName); ISugarQueryable AddJoinInfo(string tableName, string shortName, IFuncModel models, JoinType type = JoinType.Left); ISugarQueryable AddJoinInfo(List joinInfoParameters); } }