12 references to SqlColumn
System.Data.Linq (12)
SqlClient\Common\SqlNode.cs (1)
1493: this(expr.ClrType, expr.SqlType, name, null, expr, expr.SourceExpression) {
SqlClient\Query\QueryConverter.cs (2)
1717SqlColumn c = new SqlColumn(agg.ClrType, agg.SqlType, null, null, agg, this.dominatingExpression); 2434sin.OutputKey = new SqlColumn(id.Type, sql.Default(id), id.Name, id, null, this.dominatingExpression);
SqlClient\Query\SqlBinder.cs (3)
789c = new SqlColumn(m.ClrType, sqlType, name, mm, null, m.SourceExpression); 804c = new SqlColumn(m.ClrType, sqlType, name, mm, null, m.SourceExpression); 1096expr = new SqlColumn(expr.ClrType, expr.SqlType, null, null, expr, expr.SourceExpression);
SqlClient\Query\SqlColumnizer.cs (1)
54return new SqlColumn(expr.ClrType, expr.SqlType, null, null, expr, expr.SourceExpression);
SqlClient\Query\SqlDuplicator.cs (1)
144SqlColumn n = new SqlColumn(col.ClrType, col.SqlType, col.Name, col.MetaMember, null, col.SourceExpression);
SqlClient\Query\SqlFlattener.cs (1)
144c = new SqlColumn(expr.ClrType, expr.SqlType, name, null, expr, expr.SourceExpression);
SqlClient\Query\SqlReorderer.cs (1)
115col = new SqlColumn(mm.MemberAccessor.Type, typeProvider.From(mm.MemberAccessor.Type), name, mm, null, sourceExpression);
SqlClient\Query\SqlResolver.cs (1)
255SqlColumn c = new SqlColumn(found.ClrType, found.SqlType, name, this.found.MetaMember, new SqlColumnRef(this.found), row.SourceExpression);
SqlClient\Reader\ObjectReaderCompiler.cs (1)
238SqlColumn newcol = new SqlColumn(col.ClrType, col.SqlType, col.Name, col.MetaMember, null, col.SourceExpression);