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.
|
|
using OrmTest.Models; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks;
namespace OrmTest.UnitTest { public class Field : UnitTestBase { private Field() { } public Field(int eachCount) { this.Count = eachCount; } internal void Init() { base.Begin(); for (int i = 0; i < base.Count; i++) { FieldSingle(); FieldMultiple(); FieldMultiple2(); } base.End("Filed Test"); } private void FieldSingle() { Expression<Func<Student, object>> exp = it => it.Name; ExpressionContext expContext = GetContext(); expContext.Resolve(exp, ResolveExpressType.FieldSingle); var selectorValue = expContext.Result.GetString(); Check(selectorValue, null, expContext.GetTranslationColumnName("Name"), null, "FieldSingle error"); } private void FieldMultiple() { Expression<Func<Student, object>> exp = it => it.Name; ExpressionContext expContext = GetContext(); expContext.Resolve(exp, ResolveExpressType.FieldMultiple); var selectorValue = expContext.Result.GetString(); Check(selectorValue, null, expContext.GetTranslationColumnName("it.Name"), null, "FieldMultiple error"); }
private void FieldMultiple2() { Expression<Func<Student, object>> exp = it =>SqlFunc.AggregateAvg(it.Id); ExpressionContext expContext = GetContext(); expContext.Resolve(exp, ResolveExpressType.FieldMultiple); var selectorValue = expContext.Result.GetString(); Check(selectorValue, null, "AVG([it].[Id])", null, "FieldMultiple error"); } public ExpressionContext GetContext() { return new SqlServerExpressionContext();//可以更换
} } }
|