51 references to Arguments
System.Data.Entity (51)
System\Data\Common\CommandTrees\BasicExpressionVisitor.cs (1)
517
VisitExpressionList(expression.
Arguments
);
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (2)
740
IList<DbExpression> newArguments = this.VisitExpressionList(expression.
Arguments
);
741
bool unchanged = (object.ReferenceEquals(expression.ResultType, newType) && object.ReferenceEquals(expression.
Arguments
, newArguments));
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
655
Dump(e.
Arguments
, "Arguments", "Argument");
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
497
foreach (var a in e.
Arguments
)
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (2)
758
foreach (DbExpression element in e.
Arguments
)
769
retInfo.Children.Add(this.VisitWithLabel(description, properties[idx].Name, e.
Arguments
[idx]));
System\Data\Common\CommandTrees\Internal\PatternMatchRules.cs (1)
300
return (e => { if (e.ExpressionKind != DbExpressionKind.NewInstance) { return false; } else { DbNewInstanceExpression newInst = (DbNewInstanceExpression)e; return argumentsPattern(newInst.
Arguments
); } });
System\Data\Common\CommandTrees\Internal\ViewSimplifier.cs (7)
235
entityConstructor = DbExpressionBuilder.CreateNewEntityWithRelationshipsExpression(constructedEntityType, entityConstructor.
Arguments
, relatedRefs);
297
from pv in constructedEntityType.Properties.Select((p, idx) => Tuple.Create(p, entityConstructor.
Arguments
[idx])) // new { DependentProperty = p, Value = entityConstructor.Arguments[idx] })
444
Dictionary<string, DbExpression> columnValues = new Dictionary<string, DbExpression>(rowConstructor.
Arguments
.Count);
445
for (int idx = 0; idx < rowConstructor.
Arguments
.Count; idx++)
448
DbExpression columnVal = rowConstructor.
Arguments
[idx];
638
Dictionary<string, DbExpression> bindings = new Dictionary<string, DbExpression>(innerNew.
Arguments
.Count);
644
bindings[innerResultType.Members[ordinal].Name] = innerNew.
Arguments
[ordinal];
System\Data\Common\EntitySql\SemanticAnalyzer.cs (6)
3982
Debug.Assert(projectionExpression.
Arguments
.Count == inputVariableTypeProperties.Count, "projectionExpression.Arguments.Count == inputVariableTypeProperties.Count");
3983
for (int i = 0; i < projectionExpression.
Arguments
.Count; ++i)
3985
if (projectionExpression.
Arguments
[i].ExpressionKind != DbExpressionKind.Property)
3989
DbPropertyExpression propertyRef = (DbPropertyExpression)projectionExpression.
Arguments
[i];
4312
if (rightColl.
Arguments
.Count == 0)
4317
var predicates = rightColl.
Arguments
.Select(arg => left.Equal(arg));
System\Data\Mapping\Update\Internal\Propagator.cs (2)
264
PropagatorResult[] projectedValues = new PropagatorResult[projection.
Arguments
.Count];
269
projectedValues[ordinal] = Evaluator.Evaluate(projection.
Arguments
[ordinal], row, this);
System\Data\Mapping\ViewGeneration\DiscriminatorMap.cs (5)
198
Debug.Assert(entityType.Properties.Count == constructor.
Arguments
.Count, "invalid new instance");
202
var assignment = constructor.
Arguments
[j];
273
for (int i = 0; i < newX.
Arguments
.Count; i++)
275
if (!ExpressionsCompatible(newX.
Arguments
[i], newY.
Arguments
[i]))
System\Data\Mapping\ViewGeneration\Structures\CaseStatement.cs (1)
346
typeConstructor.
Arguments
,
System\Data\Mapping\ViewValidator.cs (1)
366
DbExpressionMemberCollectionEntitySetInfo argumentSetInfos = VisitExpressionList(expression.
Arguments
);
System\Data\Objects\ELinq\MethodCallTranslator.cs (7)
2249
IList<DbExpression> arguments = ((DbNewInstanceExpression)source).
Arguments
;
2674
if (lojLeft.
Arguments
.Count != 1 || lojLeft.
Arguments
[0].ExpressionKind != DbExpressionKind.Constant)
2937
for (int i = 0; i < projection.
Arguments
.Count; ++i)
2939
if (projection.
Arguments
[i].ExpressionKind != DbExpressionKind.Property)
2943
var rename = (DbPropertyExpression)projection.
Arguments
[i];
2970
newProjectionArguments.Add(innerProjection.
Arguments
[innerPropertyIndex]);
System\Data\Objects\Internal\ObjectSpanRewriter.cs (1)
367
columnExpr = newRow.
Arguments
[idx];
System\Data\Query\PlanCompiler\ITreeGenerator.cs (2)
2077
Node newArg = BuildSoftCast(VisitExprAsScalar(e.
Arguments
[i]), Helper.GetModelTypeUsage(m));
2086
foreach (DbExpression arg in e.
Arguments
)
System\Data\SqlClient\SqlGen\DmlSqlGenerator.cs (1)
614
foreach (DbExpression argument in expression.
Arguments
)
System\Data\SqlClient\SqlGen\Sql8ConformanceChecker.cs (1)
513
return VisitExpressionList(expression.
Arguments
);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (9)
2913
Debug.Assert(e.
Arguments
.Count <= 1);
2915
if (e.
Arguments
.Count == 1 && e.
Arguments
[0].ExpressionKind == DbExpressionKind.Element)
2917
DbElementExpression elementExpr = e.
Arguments
[0] as DbElementExpression;
2942
if (e.
Arguments
.Count == 0)
2950
foreach (DbExpression arg in e.
Arguments
)
3264
newColumns = new Dictionary<string, Symbol>(e.
Arguments
.Count);
3268
for(int i = 0; i < e.
Arguments
.Count; ++i)
3270
DbExpression argument = e.
Arguments
[i];