10 references to VarType
System.Data.Entity (10)
System\Data\Mapping\FunctionImportMappingComposable.cs (1)
196
if (op.Var.
VarType
== VarType.Parameter && m_viewArguments.TryGetValue(((ParameterVar)op.Var).ParameterName, out argNode))
System\Data\Query\InternalTrees\Command.cs (2)
369
get { return m_vars.Where(v => v.
VarType
!= VarType.NotValid); }
379
Debug.Assert(m_vars[id].
VarType
!= VarType.NotValid, "The var has been replaced by a different var and is no longer valid.");
System\Data\Query\InternalTrees\OpCopier.cs (1)
1046
Debug.Assert(op.Var.
VarType
== VarType.Computed, "Unexpected VarType");
System\Data\Query\InternalTrees\Vars.cs (1)
388
if (!ignoreParameters || (v.
VarType
!= VarType.Parameter))
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
634
PlanCompiler.Assert(retExpr != null, string.Format(CultureInfo.InvariantCulture, "Unresolvable Var used in Command: VarType={0}, Id={1}", Enum.GetName(typeof(VarType), referencedVar.
VarType
), referencedVar.Id));
System\Data\Query\PlanCompiler\JoinGraph.cs (3)
594
if (v.
VarType
== VarType.Column)
611
PlanCompiler.Assert(v.
VarType
== VarType.Column, "Expected a columnVar. Found " + v.
VarType
);
System\Data\Query\PlanCompiler\NestPullup.cs (1)
1960
VarList outputVars = Command.CreateVarList(op.Outputs.Where(v => v.
VarType
== VarType.Parameter));