IModelToSql.cs 569 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SqlSugar
  5. {
  6. /// <summary>
  7. /// Json Model to sql
  8. /// </summary>
  9. public partial interface ISqlBuilder
  10. {
  11. KeyValuePair<string, SugarParameter[]> OrderByModelToSql(List<OrderByModel> models);
  12. KeyValuePair<string, SugarParameter[]> GroupByModelToSql(List<GroupByModel> models);
  13. KeyValuePair<string, SugarParameter[]> SelectModelToSql(List<SelectModel> models);
  14. KeyValuePair<string, SugarParameter[]> FuncModelToSql(IFuncModel model);
  15. }
  16. }