我在我的WEB Api项目中使用Entity框架。 我首先使用代码迁移。
问题是:在进行我的初始迁移并尝试更新数据库之后,我收到此错误
空间/全文/散列索引和显式索引顺序的错误使用
这是由更新数据库中的此SQL命令引起的:
create table `Articles`
(
`articleId` int not null auto_increment ,
`title` longtext not null ,
`digest` longtext,
`content` longtext not null ,
`imgLink` longtext not null ,
`releaseDate` datetime,
`userId` int not null ,
primary key ( `articleId`)
) engine=InnoDb auto_increment=0
CREATE index `IX_userId` on `Articles` (`userId` DESC) using HASH
SQL命令是在迁移中从此代码生成的:
CreateTable(
"dbo.Articles",
c => new
{
articleId = c.Int(nullable: false, identity: true),
title = c.String(nullable: false, unicode: false),
digest = c.String(unicode: false),
content = c.String(nullable: false, unicode: false),
imgLink = c.String(nullable: false, unicode: false),
releaseDate = c.DateTime(precision: 0),
userId = c.Int(nullable: false),
})
.PrimaryKey(t => t.articleId)
.ForeignKey("dbo.Users", t => t.userId, cascadeDelete: true)
.Index(t => t.userId);
似乎DESC和HASH上的索引创建导致此错误。 有关如何更改生成的sql索引创建的任何想法,所以它与简单的索引一起使用?或者只是简单地绕过这个错误,以便我的更新数据库可以通过?谢谢 !
编辑:添加了文章类
public class Article
{
public Article()
{
this.comments = new HashSet<Comment>();
}
[Key]
public int articleId { get; set; }
[Required]
public string title { get; set; }
public string digest { get; set; }
[Required]
public string content { get; set; }
[Required]
public string imgLink { get; set; }
public DateTime? releaseDate { get; set; }
// Clé étrangère (table User)
public int userId { get; set; }
// Auteur de l'article
public virtual User user { get; set; }
// Commentaires
public virtual ICollection<Comment> comments { get; set; }
}
我将在迁移文件中的每个.Index()的输出中添加对索引的DESC HASH
答案 0 :(得分:2)
解决了它。
在您的迁移文件中,用sql命令替换.Index条目,如下所示
CreateTable(
"dbo.Articles",
c => new
{
articleId = c.Int(nullable: false, identity: true),
title = c.String(nullable: false, unicode: false),
digest = c.String(unicode: false),
content = c.String(nullable: false, unicode: false),
imgLink = c.String(nullable: false, unicode: false),
releaseDate = c.DateTime(precision: 0),
userId = c.Int(nullable: false),
})
.PrimaryKey(t => t.articleId)
.ForeignKey("dbo.Users", t => t.userId, cascadeDelete: true)
.Index(t => t.userId); // REMOVE THIS
在Up()方法的底部添加相应的SQL命令(对于每个索引)
Sql("CREATE index `IX_userId` on `Articles` (`userId` DESC)");
我在DataReader中添加的问题与MySQL连接器有关。 MySQL连接器不支持多个活动连接。要解决这个问题,如果你在控制器中有这个
public IEnumerable<Article> GetArticles()
{
return db.Articles;
}
现在应该是
public IEnumerable<Article> GetArticles()
{
return db.Articles.ToList(); // ToList() will manage the request to work with only ONE data reader,
}
如果您不知道如何将.Index()转换为SQL命令,只需
update-database -verbose
并且所有SQL命令都将显示