Galen.Ci.EntityFramework.MigrationInfo.MigrationInfo C# (CSharp) Method

MigrationInfo() public method

public MigrationInfo ( MigrationsSource source, Assembly assembly, string configurationType, ContextKeySchemaInfo contextKeySchema, System.Data.Entity.Migrations.DbMigrator genericMigrator ) : System.Data.Entity.Migrations
source MigrationsSource
assembly System.Reflection.Assembly
configurationType string
contextKeySchema ContextKeySchemaInfo
genericMigrator System.Data.Entity.Migrations.DbMigrator
return System.Data.Entity.Migrations
        public MigrationInfo(
            MigrationsSource source, 
            Assembly assembly, 
            string configurationType, 
            ContextKeySchemaInfo contextKeySchema, 
            DbMigrator genericMigrator)
        {
            this.GenericMigrator = genericMigrator;
            this.Assembly = assembly;
            this.ConfigurationType = configurationType;
            this.ContextKeySchema = contextKeySchema;
            this.Source = source;
        }
MigrationInfo