Base:
property
SqlType
System.Data.Linq.SqlClient.SqlExpression.SqlType
10 references to SqlType
System.Data.Linq (10)
SqlClient\Common\SqlNode.cs (1)
1556get { return this.column.SqlType; }
SqlClient\Query\LongTypeConverter.cs (1)
63containsLongExpressions = containsLongExpressions || col.SqlType.IsLargeType;
SqlClient\Query\SqlDuplicator.cs (1)
144SqlColumn n = new SqlColumn(col.ClrType, col.SqlType, col.Name, col.MetaMember, null, col.SourceExpression);
SqlClient\Query\SqlFormatter.cs (2)
992sb.Append(si.OutputKey.SqlType.ToQueryString()); 997sb.Append(si.OutputKey.SqlType.ToQueryString());
SqlClient\Query\SqlLiftIndependentRowExpressions.cs (1)
110SqlSelect ns = new SqlSelect(new SqlNop(cols[0].ClrType, cols[0].SqlType, sqlSource.SourceExpression), sqlSource, sqlSource.SourceExpression);
SqlClient\Query\SqlOuterApplyReducer.cs (1)
150SqlSelect ns = new SqlSelect(new SqlNop(cols[0].ClrType, cols[0].SqlType, sqlSource.SourceExpression), sqlSource, sqlSource.SourceExpression);
SqlClient\Query\SqlReorderer.cs (1)
263SqlSelect select = new SqlSelect(new SqlNop(column.ClrType, column.SqlType, column.SourceExpression), this.currentSelect.From, this.currentSelect.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);