Example #1
0
        private void LoadIndexes()
        {
            string[] restrictions = new string[4] {
                null, _owningNode.Database, Name, null
            };
            DataTable dt = _owningNode.GetSchema("Indexes", restrictions);

            foreach (DataRow row in dt.Rows)
            {
                Index i = new Index(this, row);
                Indexes.Add(i);
            }
        }