BusinessLogic.Migrations.AddPlayedGameApplicationLinkage.Up C# (CSharp) Метод

Up() публичный Метод

public Up ( ) : void
Результат void
        public override void Up()
        {
            CreateTable(
                "dbo.PlayedGameApplicationLinkage",
                c => new
                    {
                        Id = c.Int(nullable: false, identity: true),
                        PlayedGameId = c.Int(nullable: false),
                        ApplicationName = c.String(nullable: false, maxLength: 255),
                        EntityId = c.String(nullable: false, maxLength: 100),
                    })
                .PrimaryKey(t => t.Id)
                .ForeignKey("dbo.PlayedGame", t => t.PlayedGameId, cascadeDelete: true)
                .Index(t => new { t.PlayedGameId, t.ApplicationName, t.EntityId }, unique: true, name: "IX_PLAYEDGAMEID_APPLICATIONID_ENTITYID");

            //--create application linkages for all existing NemeStats games
            Sql("INSERT INTO PlayedGameApplicationLinkage (PlayedGameId, ApplicationName, EntityId) SELECT PlayedGame.Id AS PlayedGameId, 'NemeStats' AS ApplicationName, PlayedGame.Id AS EntityId FROM PlayedGame");        }
        
AddPlayedGameApplicationLinkage