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
2.0 KiB

2 years ago
  1. using OrmTest.Models;
  2. using SqlSugar;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Linq.Expressions;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace OrmTest.UnitTest
  10. {
  11. public class Field : UnitTestBase
  12. {
  13. private Field() { }
  14. public Field(int eachCount)
  15. {
  16. this.Count = eachCount;
  17. }
  18. internal void Init()
  19. {
  20. base.Begin();
  21. for (int i = 0; i < base.Count; i++)
  22. {
  23. FieldSingle();
  24. FieldMultiple();
  25. FieldMultiple2();
  26. }
  27. base.End("Filed Test");
  28. }
  29. private void FieldSingle()
  30. {
  31. Expression<Func<Student, object>> exp = it => it.Name;
  32. ExpressionContext expContext = GetContext();
  33. expContext.Resolve(exp, ResolveExpressType.FieldSingle);
  34. var selectorValue = expContext.Result.GetString();
  35. Check(selectorValue, null, expContext.GetTranslationColumnName("Name"), null, "FieldSingle error");
  36. }
  37. private void FieldMultiple()
  38. {
  39. Expression<Func<Student, object>> exp = it => it.Name;
  40. ExpressionContext expContext = GetContext();
  41. expContext.Resolve(exp, ResolveExpressType.FieldMultiple);
  42. var selectorValue = expContext.Result.GetString();
  43. Check(selectorValue, null, expContext.GetTranslationColumnName("it.Name"), null, "FieldMultiple error");
  44. }
  45. private void FieldMultiple2()
  46. {
  47. Expression<Func<Student, object>> exp = it =>SqlFunc.AggregateAvg(it.Id);
  48. ExpressionContext expContext = GetContext();
  49. expContext.Resolve(exp, ResolveExpressType.FieldMultiple);
  50. var selectorValue = expContext.Result.GetString();
  51. Check(selectorValue, null, "AVG([it].[Id])", null, "FieldMultiple error");
  52. }
  53. public ExpressionContext GetContext()
  54. {
  55. return new SqlServerExpressionContext();//可以更换
  56. }
  57. }
  58. }