mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-26 13:43:10 +08:00
-
This commit is contained in:
@@ -24,15 +24,4 @@ namespace SqlSugar
|
||||
/// </summary>
|
||||
public InitKeyType InitKeyType = InitKeyType.SystemTable;
|
||||
}
|
||||
public enum InitKeyType
|
||||
{
|
||||
/// <summary>
|
||||
/// Init primary key and identity key from the system table
|
||||
/// </summary>
|
||||
SystemTable = 0,
|
||||
/// <summary>
|
||||
/// Init primary key and identity key from the attribute
|
||||
/// </summary>
|
||||
Attribute = 1
|
||||
}
|
||||
}
|
||||
|
||||
19
SqlSugar/Enum/InitKeyType.cs
Normal file
19
SqlSugar/Enum/InitKeyType.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace SqlSugar
|
||||
{
|
||||
public enum InitKeyType
|
||||
{
|
||||
/// <summary>
|
||||
/// Init primary key and identity key from the system table
|
||||
/// </summary>
|
||||
SystemTable = 0,
|
||||
/// <summary>
|
||||
/// Init primary key and identity key from the attribute
|
||||
/// </summary>
|
||||
Attribute = 1
|
||||
}
|
||||
}
|
||||
@@ -62,6 +62,7 @@
|
||||
<Compile Include="Abstract\DeleteProvider\DeleteableProvider.cs" />
|
||||
<Compile Include="Abstract\UpdateProvider\UpdateableProvider.cs" />
|
||||
<Compile Include="Entities\SugarMessageResult.cs" />
|
||||
<Compile Include="Enum\InitKeyType.cs" />
|
||||
<Compile Include="Realization\MySql\DbType.cs" />
|
||||
<Compile Include="Realization\MySql\Core\DbBind\MySqlDbBind.cs" />
|
||||
<Compile Include="Realization\MySql\Core\SqlBuilder\MySqlBuilder.cs" />
|
||||
|
||||
Reference in New Issue
Block a user