IJsonProvider.cs 279 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace SqlSugar
  5. {
  6. public interface IJsonProvider<T>
  7. {
  8. List<SqlObjectResult> ToSqlList();
  9. SqlObjectResult ToSql();
  10. List<string> ToSqlString();
  11. T ToResult();
  12. }
  13. }