MySql RenameColumn BUG

This commit is contained in:
sunkaixuan
2019-05-21 09:55:24 +08:00
parent 583ad3279e
commit 6c360ffdc3
3 changed files with 50 additions and 1 deletions

View File

@@ -147,6 +147,7 @@
<Compile Include="OldTest\UnitTest\Update.cs" />
<Compile Include="Models\CarType.cs" />
<Compile Include="UnitTest\UAdo.cs" />
<Compile Include="UnitTest\Updateable.cs" />
<Compile Include="UnitTest\UQueryable.cs" />
<Compile Include="UnitTest\UQueryableAsync.cs" />
<Compile Include="UnitTest\UThread3.cs" />

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Updateable
{
public static void Init()
{
}
}
}