码迷,mamicode.com
首页 > 其他好文 > 详细

在EF中做数据索引

时间:2017-08-12 20:27:07      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:content   names   partial   bsp   identity   log   for   cad   dede   

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中做数据索引

标签:content   names   partial   bsp   identity   log   for   cad   dede   

原文地址:http://www.cnblogs.com/jiangcm/p/7351274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!