BExIS.Ext.Model.DB.Migration.Install C# (CSharp) Метод

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

It should be done in conect of a single transaction! or even all the migrations of a version should be wrapped in one transaction
public Install ( ) : bool
Результат bool
        public bool Install()
        {
            if (BeforeUp())
            {
                if (Up())
                {
                    return AfterUp();
                }
            }
            return false;
        }