39 references to Arguments
System.Data.Linq (39)
SqlClient\Common\SqlVisitor.cs (6)
563
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
564
fc.
Arguments
[i] = this.VisitExpression(fc.
Arguments
[i]);
569
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
570
fc.
Arguments
[i] = this.VisitExpression(fc.
Arguments
[i]);
SqlClient\Query\LongTypeConverter.cs (3)
108
fc.
Arguments
[0] = ConvertToMax(fc.
Arguments
[0],out changed);
109
if (fc.
Arguments
[0].SqlType.IsLargeType) {
SqlClient\Query\SqlBinder.cs (3)
144
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
145
fc.
Arguments
[i] = this.FetchExpression(fc.
Arguments
[i]);
SqlClient\Query\SqlComparer.cs (5)
205
if (f1.
Arguments
.Count != f2.
Arguments
.Count)
207
for (int i = 0, n = f1.
Arguments
.Count; i < n; i++) {
208
if (!AreEqual(f1.
Arguments
[i], f2.
Arguments
[i]))
SqlClient\Query\SqlDuplicator.cs (6)
387
SqlExpression[] args = new SqlExpression[fc.
Arguments
.Count];
388
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
389
args[i] = this.VisitExpression(fc.
Arguments
[i]);
394
SqlExpression[] args = new SqlExpression[fc.
Arguments
.Count];
395
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
396
args[i] = this.VisitExpression(fc.
Arguments
[i]);
SqlClient\Query\SqlFormatter.cs (2)
270
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
273
this.Visit(fc.
Arguments
[i]);
SqlClient\Query\SqlMethodTransformer.cs (1)
26
SqlExpression expr = resultFunctionCall.
Arguments
[0];
SqlClient\Query\SqlRetyper.cs (5)
209
for (int i = 0, n = fc.
Arguments
.Count; i < n; i++) {
210
fc.
Arguments
[i] = this.VisitExpression(fc.
Arguments
[i]);
212
if (fc.
Arguments
.Count > 0) {
213
ProviderType oldType = fc.
Arguments
[0].SqlType;
SqlClient\SqlTypeSystemProvider.cs (8)
1178
ProviderType[] array = new ProviderType[fc.
Arguments
.Count];
1180
array[i] = fc.
Arguments
[i].SqlType;
1238
if (functionCall.
Arguments
[2].NodeType == SqlNodeType.Value) {
1239
SqlValue val = (SqlValue)functionCall.
Arguments
[2];
1267
if (functionCall.
Arguments
.Count == 4)
1269
SqlValue delLength = functionCall.
Arguments
[2] as SqlValue;
1273
functionCall.
Arguments
[0].SqlType, functionCall.
Arguments
[3].SqlType);