我有一個系統使用實體框架對運行良好的SQL Server數據庫。最近我決定將MySql作爲後端。該錯誤是由一些對SQLServer運行良好的代碼造成的,但是對MySql失敗。MySql實體框架auto_increment錯誤
MySql 5.6.27,EF6。
我有一個表有1列(稱爲Id),我想用作序列計數器。我通過將Id作爲主鍵和auto_generated來實現這一點。
下面是表DEF:
create table tblCompanySequence (
Id int auto_increment primary key not null default 1
);
下面是相應的C#DEF:
using System.Data.Linq.Mapping;
namespace Foo.DataAccess.EF.Entity
{
[Table(Name = "tblCompanySequence")]
public class EFCompanySequence
{
[Column(IsPrimaryKey = true, IsDbGenerated = true, AutoSync = AutoSync.OnInsert)]
public int Id { get; set; }
}
}
這裏是代碼:
var newSeq = new EFCompanySequence();
var tableSeq = context.GetTable<EFCompanySequence>();
tableSeq.InsertOnSubmit(newSeq);
context.SubmitChanges();
var newId = newSeq.Id;
我就得到一個錯誤致電提交更改。
A first chance exception of type 'MySql.Data.MySqlClient.MySqlException' occurred in System.Data.Linq.dll
Additional information: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT VALUES
SELECT CONVERT(Int,SCOPE_IDENTITY()) AS `value`' at line 1
我已經嘗試了數排列,e.g:
create table tblCompanySequence (
Id int auto_increment not null,
primary key (Id)
);
,並使用EF表對象DbGenerated註解,但仍創下了同一面牆上。
任何建議非常感謝。
乾杯, 安迪
UPDATE 1:
這裏是我的配置設置(設置爲每https://dev.mysql.com/doc/connector-net/en/connector-net-entityframework60.html)
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<system.data>
<DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.7.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>
<entityFramework codeConfigurationType="MySql.Data.Entity.MySqlEFConfiguration, MySql.Data.Entity.EF6">
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6"/>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
更新2:
我閱讀另一個網站,我可以能夠使用下面的代碼來克服這一點。
var newId = context.ExecuteCommand("insert into tblCompanySequence values (null); select LAST_INSERT_ID();");
此代碼成功地插入新行與遞增的ID到數據庫中,但是從選擇的返回值始終爲1
我敢肯定,這一定有什麼明顯我做錯誤。
scope_idntity()是一個tsql函數,而不是一個mysql函數。你配置EF使用MySQL而不是MS SQL? – Shadow
談到MySql時,我是一個相對的noob。我在連接字符串上設置了Sql Server Mode開關。你是這個意思嗎。 –
andy