mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-24 07:22:57 +08:00
-
This commit is contained in:
parent
e6422a5792
commit
508246eb4e
Binary file not shown.
12
OrmTest/ExpressionTest/Where.cs
Normal file
12
OrmTest/ExpressionTest/Where.cs
Normal 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
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
@ -44,6 +44,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="ExpressionTest\Select.cs" />
|
<Compile Include="ExpressionTest\Select.cs" />
|
||||||
|
<Compile Include="ExpressionTest\Where.cs" />
|
||||||
<Compile Include="Models\School.cs" />
|
<Compile Include="Models\School.cs" />
|
||||||
<Compile Include="Models\Student.cs" />
|
<Compile Include="Models\Student.cs" />
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
|
@ -60,6 +60,11 @@ namespace SqlSugar
|
|||||||
get; set;
|
get; set;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Dictionary<string, object> TempDate
|
||||||
|
{
|
||||||
|
get; set;
|
||||||
|
}
|
||||||
|
|
||||||
public override void ResetDbType()
|
public override void ResetDbType()
|
||||||
{
|
{
|
||||||
this.DbType = System.Data.DbType.String;
|
this.DbType = System.Data.DbType.String;
|
||||||
|
Loading…
Reference in New Issue
Block a user