8 references to RowType
System.Data.Linq (8)
SqlClient\Common\SqlNode.cs (3)
605return tab.RowType.Type; 2018if (!this.table.RowType.Type.IsAssignableFrom(value.ClrType)) 2019throw Error.ArgumentWrongType("value", this.table.RowType, value.ClrType);
SqlClient\Query\SqlBinder.cs (1)
783MetaDataMember mm = GetRequiredInheritanceDataMember(tab.RowType, m.Member);
SqlClient\Query\SqlDuplicator.cs (1)
244SqlTable nt = new SqlTable(tab.MetaTable, tab.RowType, tab.SqlRowType, tab.SourceExpression);
SqlClient\Query\SqlReorderer.cs (1)
96MetaType rowType = isTable ? tab.RowType : tvf.RowType;
SqlClient\Query\Translator.cs (1)
37SqlExpression projection = this.BuildProjection(tableAliasRef, table.RowType, allowDeferred, link, source);
SqlClient\Query\TypeSource.cs (1)
79sourceType = ((SqlTable)node).RowType.Type;