mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 08:37:25 +08:00
21 lines
934 B
C#
21 lines
934 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public partial interface ISugarQueryable<T>
|
|
{
|
|
ISugarQueryable<T> Having(IFuncModel model);
|
|
ISugarQueryable<T> OrderBy(List<OrderByModel> models);
|
|
ISugarQueryable<T> GroupBy(List<GroupByModel> models);
|
|
DynamicCoreSelectModel Select(string expShortName, List<string> columns, params object[] args);
|
|
ISugarQueryable<T> Select(List<SelectModel> models);
|
|
ISugarQueryable<TResult> Select<TResult>(List<SelectModel> models);
|
|
ISugarQueryable<T> Select(List<SelectModel> models,AsNameFormatType type);
|
|
ISugarQueryable<T> AS(string tableName, string shortName);
|
|
ISugarQueryable<T> AddJoinInfo(string tableName, string shortName, IFuncModel models, JoinType type = JoinType.Left);
|
|
ISugarQueryable<T> AddJoinInfo(List<JoinInfoParameter> joinInfoParameters);
|
|
}
|
|
}
|