This commit is contained in:
sunkaixuan 2017-01-16 00:22:56 +08:00
parent ad2c493f85
commit 2b14283fd1

View File

@ -58,8 +58,16 @@ namespace SqlSugar
base.Expression = memberAssignment.Expression;
base.Start();
}
else {
Check.ThrowNotSupportedException(item.GetType().Name);
else if (item is BinaryExpression)
{
base.Expression = item;
parameter.CommonTempData = "simple";
base.Start();
parameter.CommonTempData = null;
}
else
{
Check.ThrowNotSupportedException(item.GetType().Name);
}
}
}