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