You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.7 KiB

2 years ago
  1. namespace SqlSugar
  2. {
  3. public class SqliteQueryable<T>:QueryableProvider<T>
  4. {
  5. public override ISugarQueryable<T> With(string withString)
  6. {
  7. return this;
  8. }
  9. public override ISugarQueryable<T> PartitionBy(string groupFileds)
  10. {
  11. this.GroupBy(groupFileds);
  12. return this;
  13. }
  14. }
  15. public class SqliteQueryable<T,T2> : QueryableProvider<T,T2>
  16. {
  17. }
  18. public class SqliteQueryable<T, T2,T3> : QueryableProvider<T, T2,T3>
  19. {
  20. }
  21. public class SqliteQueryable<T, T2,T3,T4> : QueryableProvider<T, T2,T3,T4>
  22. {
  23. }
  24. public class SqliteQueryable<T, T2, T3, T4, T5> : QueryableProvider<T, T2, T3, T4, T5>
  25. {
  26. }
  27. public class SqliteQueryable<T, T2, T3, T4, T5, T6> : QueryableProvider<T, T2, T3, T4, T5, T6>
  28. {
  29. }
  30. public class SqliteQueryable<T, T2, T3, T4, T5, T6, T7> : QueryableProvider<T, T2, T3, T4, T5, T6, T7>
  31. {
  32. }
  33. public class SqliteQueryable<T, T2, T3, T4, T5, T6, T7, T8> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8>
  34. {
  35. }
  36. public class SqliteQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9>
  37. {
  38. }
  39. public class SqliteQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10>
  40. {
  41. }
  42. public class SqliteQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
  43. {
  44. }
  45. public class SqliteQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>
  46. {
  47. }
  48. }