This commit is contained in:
sunkaixuan 2017-01-14 20:53:04 +08:00
parent e6422a5792
commit 508246eb4e
4 changed files with 18 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.ExpressionTest
{
public class Where
{
}
}

View File

@ -44,6 +44,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="ExpressionTest\Select.cs" />
<Compile Include="ExpressionTest\Where.cs" />
<Compile Include="Models\School.cs" />
<Compile Include="Models\Student.cs" />
<Compile Include="Program.cs" />

View File

@ -60,6 +60,11 @@ namespace SqlSugar
get; set;
}
public Dictionary<string, object> TempDate
{
get; set;
}
public override void ResetDbType()
{
this.DbType = System.Data.DbType.String;