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.
51 lines
1.6 KiB
51 lines
1.6 KiB
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 : ExpTestBase
|
|
{
|
|
private Field() { }
|
|
public Field(int eachCount)
|
|
{
|
|
this.Count = eachCount;
|
|
}
|
|
internal void Init()
|
|
{
|
|
base.Begin();
|
|
for (int i = 0; i < base.Count; i++)
|
|
{
|
|
FieldSingle();
|
|
FieldMultiple();
|
|
}
|
|
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");
|
|
}
|
|
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");
|
|
}
|
|
|
|
public ExpressionContext GetContext()
|
|
{
|
|
return new SqlServerExpressionContext();//可以更换
|
|
}
|
|
}
|
|
}
|
|
|