10 writes to Projection
System.Data.Linq (10)
SqlClient\Common\SqlNode.cs (2)
430this.Projection = projection; 438this.Projection = projection;
SqlClient\Common\SqlVisitor.cs (2)
326suq.Projection = this.VisitExpression(suq.Projection); 336spc.Projection = this.VisitExpression(spc.Projection);
SqlClient\Query\QueryConverter.cs (3)
1198spc.Projection = this.translator.BuildProjection(rowExp, rowType, this.allowDeferred, null, mce); 1255suq.Projection = col; 1260suq.Projection = this.translator.BuildProjection(rowExp, mType, this.allowDeferred, null, this.dominatingExpression);
SqlClient\Query\SqlParameterizer.cs (1)
178suq.Projection = this.VisitExpression(suq.Projection);
SqlClient\SqlProvider.cs (2)
1673suq.Projection = col; 1678suq.Projection = this.translator.BuildProjection(rowExp, rowType, true, null, tmp);
10 references to Projection
System.Data.Linq (10)
SqlClient\Common\SqlNode.cs (3)
507if (value.Projection != null && value.Projection.ClrType != this.ClrType) 508throw Error.ArgumentWrongType("value", this.ClrType, value.Projection.ClrType);
SqlClient\Common\SqlVisitor.cs (2)
326suq.Projection = this.VisitExpression(suq.Projection); 336spc.Projection = this.VisitExpression(spc.Projection);
SqlClient\Query\SqlDuplicator.cs (2)
256SqlExpression projection = this.VisitExpression(suq.Projection); 273SqlExpression projection = this.VisitExpression(spc.Projection);
SqlClient\Query\SqlParameterizer.cs (1)
178suq.Projection = this.VisitExpression(suq.Projection);
SqlClient\SqlProvider.cs (2)
1647if (suq != null && suq.Projection != null) { 1648projection = suq.Projection;