在EF中做数据索引
Posted jiangcm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在EF中做数据索引相关的知识,希望对你有一定的参考价值。
namespace MigrationsCodeDemo.Migrations
{
using System.Data.Entity.Migrations;
public partial class AddPostClass : DbMigration
{
public override void Up()
{
CreateTable(
"Posts",
c => new
{
PostId = c.Int(nullable: false, identity: true),
Title = c.String(maxLength: 200),
Content = c.String(),
BlogId = c.Int(nullable: false),
})
.PrimaryKey(t => t.PostId)
.ForeignKey("Blogs", t => t.BlogId, cascadeDelete: true)
.Index(t => t.BlogId)
.Index(p => p.Title, unique: true);
AddColumn("Blogs", "Rating", c => c.Int(nullable: false, defaultValue: 3));
}
}
}
以上是关于在EF中做数据索引的主要内容,如果未能解决你的问题,请参考以下文章