This commit is contained in:
sunkaixuan
2017-01-08 20:55:22 +08:00
parent bc8fad8275
commit 3ecf1beaea
21 changed files with 20 additions and 20 deletions

View File

@@ -16,10 +16,11 @@ namespace OrmTest
{
static void Main(string[] args)
{
Expression<Func<Student, bool>> exp = it => it.Name!="a";
string id = "1";
Expression<Func<Student, bool>> exp = it => it.Name!=id;
ExpressionContext expContext = new ExpressionContext(exp, ResolveExpressType.Single);
// var x = expContext.GetFiledName();
var xx = expContext.ToString();
var xx = expContext.ToSqlString();
var b = DateTime.Now;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.