MySql实体框架auto_increment错误

时间:2015-10-07 11:05:00

标签: c# mysql entity-framework auto-increment mysql-connector

我有一个系统对运行正常的SQL Server数据库使用实体框架。最近我决定转移到MySql作为后端。该错误是由一些针对SQLServer运行良好的代码引起的,但是针对MySql失败。

MySql 5.6.27,EF6。

我有一个包含1列的表(称为Id),我想将其用作序列计数器。我通过将Id作为主键并自动生成来实现此目的。

这是表格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

我尝试过多种排列,例如:

create table tblCompanySequence (
    Id int auto_increment not null,
    primary key (Id)
);

并在EF表格对象上使用DbGenerated注释,但仍然撞到同一面墙。

任何建议都非常感谢。

干杯, 安迪

更新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的新行插入到数据库中,但select的返回值始终为1.

我确信这一定是显而易见的我做错了。

4 个答案:

答案 0 :(得分:0)

您应该配置EntityFramework以使用MySql,然后它将使用LAST_INSERT_ID()而不是score_identity()。看一下配置文件

  <connectionStrings>
<add name="DefaultConnection"
providerName="MySql.Data.MySqlClient"
connectionString="[Insert your ConnectionString to the mysql database here]"/>
</connectionStrings>

答案 1 :(得分:0)

如果你真的需要这个,你可以借助这种语法实现你的目标。试试这个并根据您的需要进行修改:

CREATE TABLE table1_seq
(
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY
);

CREATE TABLE table1
(
id VARCHAR(7) NOT NULL PRIMARY KEY DEFAULT '0', name VARCHAR(30)
);

试试这个。我希望你能理解,

答案 2 :(得分:0)

您应该配置EntityFramework以使用MySql 并根据您的需求修改下面的索引

MySQL的语法 以下SQL语句将“ID”列定义为“Persons”表中的自动增量主键字段:

创建表人员 ( ID int NOT NULL AUTO_INCREMENT, LastName varchar(255)NOT NULL, FirstName varchar(255), 地址varchar(255), 城市varchar(255), 主要钥匙(ID) )

答案 3 :(得分:0)

我想我可能已找到答案(但还没有令人满意的解决方案)。

我正在使用Linq to SQL(而不是Linq to Entities),看来在MySql.Data等中没有开箱即用的支持。

我已经开始使用Depart linqExpress解决方案,但是初看起来我似乎必须重新编写大量代码才能使其工作。

除非有人有其他解决方案。

干杯。