Update Nuget

This commit is contained in:
sunkaixuan
2017-06-26 23:07:58 +08:00
parent 1672bab14a
commit 8b25e950f3
3 changed files with 8 additions and 4 deletions

View File

@@ -24,7 +24,11 @@ namespace SqlSugar
base.Expression = expression.Operand; base.Expression = expression.Operand;
var isMember = expression.Operand is MemberExpression; var isMember = expression.Operand is MemberExpression;
var isConst = expression.Operand is ConstantExpression; var isConst = expression.Operand is ConstantExpression;
if (base.Expression is BinaryExpression || parameter.BaseExpression is BinaryExpression) if (baseParameter.CurrentExpression is NewArrayExpression)
{
Result(parameter, nodeType);
}
else if (base.Expression is BinaryExpression || parameter.BaseExpression is BinaryExpression || baseParameter.CommonTempData.ObjToString() == CommonTempDataType.Append.ToString())
{ {
Append(parameter, nodeType); Append(parameter, nodeType);
} }

View File

@@ -17,5 +17,5 @@ using System.Runtime.InteropServices;
// The following GUID is for the ID of the typelib if this project is exposed to COM // The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("1c022a5c-4e4d-4026-a8a3-f659b9740a1a")] [assembly: Guid("1c022a5c-4e4d-4026-a8a3-f659b9740a1a")]
[assembly: AssemblyVersion("4.1.0.1")] [assembly: AssemblyVersion("4.1.0.2")]
[assembly: AssemblyFileVersion("4.1.0.1")] [assembly: AssemblyFileVersion("4.1.0.2")]

View File

@@ -2,7 +2,7 @@
<package > <package >
<metadata> <metadata>
<id>sqlSugarCore</id> <id>sqlSugarCore</id>
<version>4.1.0.1</version> <version>4.1.0.2</version>
<authors>sunkaixuan</authors> <authors>sunkaixuan</authors>
<owners>Landa</owners> <owners>Landa</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl> <licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>