1 instantiation of Table
System.Data.Entity (1)
System\Data\Query\InternalTrees\Command.cs (1)
355Table t = new Table(this, tableMetadata, NewTableId());
37 references to Table
System.Data.Entity (37)
System\Data\Query\InternalTrees\Command.cs (11)
32private List<Table> m_tables; 62m_tables = new List<Table>(); 353internal Table CreateTableInstance(TableMD tableMetadata) 355Table t = new Table(this, tableMetadata, NewTableId()); 481internal ColumnVar CreateColumnVar(Table table, ColumnMD columnMD) 1094Table table = this.CreateTableInstance(tableMetadata); 1102internal ScanTableOp CreateScanTableOp(Table table) 1112internal ScanViewOp CreateScanViewOp(Table table) 1123Table table = this.CreateTableInstance(tableMetadata); 1133Table t = this.CreateTableInstance(Command.CreateTableDefinition(TypeHelpers.GetEdmType<CollectionType>(v.Type).TypeUsage)); 1143internal UnnestOp CreateUnnestOp(Var v, Table t)
System\Data\Query\InternalTrees\Dump.cs (1)
571private void DumpTable(Table table) {
System\Data\Query\InternalTrees\OpCopier.cs (3)
151private void MapTable(Table newTable, Table oldTable) 719Table newTable = m_destCmd.CreateTableInstance(op.Table.TableMetadata);
System\Data\Query\InternalTrees\RelOps.cs (8)
22private Table m_table; 26protected ScanTableBaseOp(OpType opType, Table table) 40internal Table Table { get { return m_table; } } 54internal ScanTableOp(Table table) 102internal ScanViewOp(Table table) 145private Table m_table; 150internal UnnestOp(Var v, Table t) : this() 172internal Table Table { get { return m_table; } }
System\Data\Query\InternalTrees\Vars.cs (3)
139Table m_table; 147internal ColumnVar(int id, Table table, ColumnMD columnMetadata) 157internal Table Table { get { return m_table; } }
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
1247private static VarInfoList GetTableVars(Table targetTable)
System\Data\Query\PlanCompiler\JoinGraph.cs (7)
167private Table m_table; 200internal Table Table { get { return m_table; } } 487private Dictionary<Table, AugmentedTableNode> m_tableVertexMap; 516m_tableVertexMap = new Dictionary<Table, AugmentedTableNode>(); 809Table table = null; 1201private bool ContainsJoinEdgeForTable(IEnumerable<JoinEdge> joinEdges, Table table) 1946private static bool HasNonKeyReferences(Table table)
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (2)
1184Table newTable = m_command.CreateTableInstance(newTableMD); 1434Table newTable = m_command.CreateTableInstance(newTableMetadata);
System\Data\Query\PlanCompiler\TransformationRules.cs (1)
4253var sourceTable = ((ScanTableOp)n.Child0.Op).Table;