21 references to Arguments
System.Data.Linq (21)
SqlClient\Common\SqlVisitor.cs (3)
371
for (int i = 0, n = cq.
Arguments
.Count; i < n; i++) {
372
cq.
Arguments
[i] = this.VisitExpression(cq.
Arguments
[i]);
SqlClient\Query\SqlDuplicator.cs (3)
94
for (int i = 0, n = cq.
Arguments
.Count; i < n; i++) {
95
nq.
Arguments
.Add(this.VisitExpression(cq.
Arguments
[i]));
SqlClient\Query\SqlFormatter.cs (2)
952
for (int i = 0, n = cq.
Arguments
.Count; i < n; i++) {
954
this.Visit(cq.
Arguments
[i]);
SqlClient\Query\SqlMultiplexer.cs (1)
208
Visitor v = new Visitor(cq.
Arguments
, cq.Parameters);
SqlClient\Reader\ObjectReaderCompiler.cs (12)
615
if (cq1.
Arguments
.Count != cq2.
Arguments
.Count) {
618
for (int i = 0, n = cq1.
Arguments
.Count; i < n; i++) {
619
if (!AreSimilar(cq1.
Arguments
[i], cq2.
Arguments
[i])) {
1427
this.GenerateConstInt(cq.
Arguments
.Count);
1431
for (int i = 0, n = cq.
Arguments
.Count; i < n; i++) {
1434
Type clrType = cq.
Arguments
[i].ClrType;
1435
if (cq.
Arguments
[i].NodeType == SqlNodeType.ColumnRef) {
1436
SqlColumnRef cref = (SqlColumnRef)cq.
Arguments
[i];
1443
this.GenerateExpressionForType(cq.
Arguments
[i], cq.
Arguments
[i].ClrType);