Tup.Cobar4Net.Parser.Ast.Fragment.Tableref.TableReferences.TableReferences C# (CSharp) Method

TableReferences() public method

public TableReferences ( IList list ) : System
list IList
return System
        public TableReferences(IList<TableReference> list)
        {
            if (list == null || list.IsEmpty())
            {
                throw new SqlSyntaxErrorException("at least one table reference");
            }
            _list = EnsureListType(list);
        }