KdbndpQueryable.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SqlSugar
  7. {
  8. public class KdbndpQueryable<T> : QueryableProvider<T>
  9. {
  10. public override ISugarQueryable<T> With(string withString)
  11. {
  12. return this;
  13. }
  14. public override ISugarQueryable<T> PartitionBy(string groupFileds)
  15. {
  16. this.GroupBy(groupFileds);
  17. return this;
  18. }
  19. }
  20. public class KdbndpQueryable<T, T2> : QueryableProvider<T, T2>
  21. {
  22. public new ISugarQueryable<T, T2> With(string withString)
  23. {
  24. return this;
  25. }
  26. }
  27. public class KdbndpQueryable<T, T2, T3> : QueryableProvider<T, T2, T3>
  28. {
  29. }
  30. public class KdbndpQueryable<T, T2, T3, T4> : QueryableProvider<T, T2, T3, T4>
  31. {
  32. }
  33. public class KdbndpQueryable<T, T2, T3, T4, T5> : QueryableProvider<T, T2, T3, T4, T5>
  34. {
  35. }
  36. public class KdbndpQueryable<T, T2, T3, T4, T5, T6> : QueryableProvider<T, T2, T3, T4, T5, T6>
  37. {
  38. }
  39. public class KdbndpQueryable<T, T2, T3, T4, T5, T6, T7> : QueryableProvider<T, T2, T3, T4, T5, T6, T7>
  40. {
  41. }
  42. public class KdbndpQueryable<T, T2, T3, T4, T5, T6, T7, T8> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8>
  43. {
  44. }
  45. public class KdbndpQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9>
  46. {
  47. }
  48. public class KdbndpQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10>
  49. {
  50. }
  51. public class KdbndpQueryable<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11> : QueryableProvider<T, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11>
  52. {
  53. }
  54. public class KdbndpQueryable<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>
  55. {
  56. }
  57. }