8 references to CollectionVarInfo
System.Data.Entity (8)
System\Data\Query\PlanCompiler\ColumnMapProcessor.cs (1)
34if (m_varInfo.Kind == VarInfoKind.CollectionVarInfo)
System\Data\Query\PlanCompiler\NominalTypeEliminator.cs (3)
1364if (m_varInfoMap.TryGetVarInfo(op.Var, out unnestVarInfo) && unnestVarInfo.Kind == VarInfoKind.CollectionVarInfo) 1587if (outerVarInfo.Kind == VarInfoKind.CollectionVarInfo) 2518if (varInfo.Kind == VarInfoKind.CollectionVarInfo)
System\Data\Query\PlanCompiler\VarInfo.cs (4)
53/// The VarInfo is of <see cref="CollectionVarInfo"/> type. 97/// Gets <see cref="VarInfoKind"/> for this <see cref="VarInfo"/>. Always <see cref="VarInfoKind.CollectionVarInfo"/>. 99internal override VarInfoKind Kind { get { return VarInfoKind.CollectionVarInfo; } } 239/// Gets <see cref="VarInfoKind"/> for this <see cref="VarInfo"/>. Always <see cref="VarInfoKind.CollectionVarInfo"/>.