System.Data.DataTable.CheckForClosureOnExpressions C# (CSharp) Method

CheckForClosureOnExpressions() private method

private CheckForClosureOnExpressions ( DataTable dt, bool writeHierarchy ) : bool
dt DataTable
writeHierarchy bool
return bool
        private bool CheckForClosureOnExpressions(DataTable dt, bool writeHierarchy)
        {
            List<DataTable> tableList = new List<DataTable>();
            tableList.Add(dt);
            if (writeHierarchy)
            {
                CreateTableList(dt, tableList);
            }
            return CheckForClosureOnExpressionTables(tableList);
        }
DataTable