namespace SampleMvcCodeFirst.Migrations { using System; using System.Data.Entity.Migrations; public partial class InitialCreate : DbMigration { public override void Up() { CreateTable( "dbo.Products", c => new { ProductId = c.Long(nullable: false, identity: true), ProductName = c.String(), SalesPrice = c.Double(nullable: false), }) .PrimaryKey(t => t.ProductId); } public override void Down() { DropTable("dbo.Products"); } } }Dosyayı İndir