This commit is contained in:
sunkaixuan 2023-11-06 18:42:44 +08:00
parent a11671877a
commit efe0de47ee
4 changed files with 39 additions and 0 deletions

View File

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

View File

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

View File

@ -64,13 +64,16 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="a_Delete.cs" />
<Compile Include="1_CodeFirst.cs" /> <Compile Include="1_CodeFirst.cs" />
<Compile Include="2_DbFirst.cs" /> <Compile Include="2_DbFirst.cs" />
<Compile Include="4_JoinQuery.cs" /> <Compile Include="4_JoinQuery.cs" />
<Compile Include="5_PageQuery.cs" /> <Compile Include="5_PageQuery.cs" />
<Compile Include="9_Update.cs" />
<Compile Include="UnitTest\Description.cs" /> <Compile Include="UnitTest\Description.cs" />
<Compile Include="3_EasyQuery.cs" /> <Compile Include="3_EasyQuery.cs" />
<Compile Include="7_GroupQuery.cs" /> <Compile Include="7_GroupQuery.cs" />
<Compile Include="8_Insert.cs" />
<Compile Include="UserTestCases\Cases\OldDemo\Demo2_Updateable.cs" /> <Compile Include="UserTestCases\Cases\OldDemo\Demo2_Updateable.cs" />
<Compile Include="UserTestCases\Cases\OldDemo\Demo3_Insertable.cs" /> <Compile Include="UserTestCases\Cases\OldDemo\Demo3_Insertable.cs" />
<Compile Include="UserTestCases\Cases\OldDemo\Demo4_Deleteable.cs" /> <Compile Include="UserTestCases\Cases\OldDemo\Demo4_Deleteable.cs" />

View File

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