6 references to AsCqt
System.Data.Entity (6)
System\Data\Mapping\ViewGeneration\CqlGeneration\BooleanProjectedSlot.cs (2)
81return m_expr.AsCqt(row); 87return DbExpressionBuilder.Case(new DbExpression[] { m_expr.AsCqt(row) }, new DbExpression[] { DbExpressionBuilder.True }, DbExpressionBuilder.False);
System\Data\Mapping\ViewGeneration\CqlGeneration\CaseCqlBlock.cs (1)
88cqt = cqt.Where(row => this.WhereClause.AsCqt(row));
System\Data\Mapping\ViewGeneration\CqlGeneration\ExtentCqlBlock.cs (1)
87cqt = cqt.Where(row => this.WhereClause.AsCqt(row));
System\Data\Mapping\ViewGeneration\Structures\BoolLiteral.cs (1)
89/// See <see cref="BoolExpression.AsCqt"/>.
System\Data\Mapping\ViewGeneration\Structures\CaseStatement.cs (1)
269conditions.Add(clause.Condition.AsCqt(row));