Пример #1
0
        public MySmo.Schema GetSchema(Smo.Schema smo_s, MySmo.Database parent = null)
        {
            #region implement

            SetDataLimit();

            var mysmo_s = new MySmo.Schema();

            mysmo_s.ParentDatabase     = parent;
            mysmo_s.Name               = smo_s.Name;
            mysmo_s.Owner              = smo_s.Owner;
            mysmo_s.ExtendedProperties = GetExtendProperties(mysmo_s, smo_s.ExtendedProperties);

            FormatExtendProperties(mysmo_s);

            return(mysmo_s);

            #endregion
        }
Пример #2
0
 public void FormatExtendProperties(MySmo.Schema mysmo_s)
 {
     CombineExtendProperties(mysmo_s.ExtendedProperties);
 }