12 references to Condition
System.Linq.Expressions (9)
System\Dynamic\DynamicObject.cs (5)
606Expression checkedConvert = Expression.Condition( 618Expression.Condition( 650Expression.Condition( 710Expression.Condition( 773Expression.Condition(
System\Dynamic\ExpandoObject.cs (1)
812Expression.Condition(
System\Linq\Expressions\ConditionalExpression.cs (3)
95return Expression.Condition(test, ifTrue, ifFalse, Type); 200return Condition(test, ifTrue, Expression.Empty(), typeof(void)); 215return Condition(test, ifTrue, ifFalse, typeof(void));
System.Linq.Queryable (3)
System\Linq\EnumerableRewriter.cs (3)
389return Expression.Condition(test, ifTrue, ifFalse, trueType); 391return Expression.Condition(test, ifTrue, ifFalse, falseType); 392return Expression.Condition(test, ifTrue, ifFalse, GetEquivalentType(type));