14 references to GetTable
System.Data.Linq (14)
ChangeDirector.cs (1)
399ITable table = this.context.GetTable(tracked.Type.InheritanceRoot.Type);
DataBindingList.cs (1)
16ITable table = context.GetTable(metaTable.RowType.Type);
DataContext.cs (2)
424tb = this.GetTable(rowType); 609GetTable(inheritanceRoot.Type);
DataServices.cs (3)
213ITable table = this.context.GetTable(type.InheritanceRoot.Type); 239Expression thisSource = Expression.Constant(context.GetTable(rootType)); 246Expression otherSource = Expression.Constant(context.GetTable(association.OtherType.InheritanceRoot.Type));
SqlClient\Query\QueryConverter.cs (6)
1863ITable table = this.services.Context.GetTable(rowType); 1909ITable table = this.services.Context.GetTable(typeArgs[0]); 2396Expression source = this.services.Context.GetTable(metaTable.RowType.Type).Expression; 2561Expression source = this.services.Context.GetTable(metaTable.RowType.Type).Expression; 2595ITable table = this.services.Context.GetTable(metaType.InheritanceRoot.Type); 2645Expression source = this.services.Context.GetTable(metaTable.RowType.Type).Expression;
SqlClient\Query\Translator.cs (1)
248ITable table = this.services.Context.GetTable(tableType);