Skip to content

Latest commit

 

History

History
68 lines (42 loc) · 3.32 KB

File metadata and controls

68 lines (42 loc) · 3.32 KB

ExpressionEvaluator.IsPartOf Method

Index > ExpressionPowerTools.Core > ExpressionPowerTools.Core.Comparisons > ExpressionEvaluator > IsPartOf

Determines whether an Expression is part of another expression.

Overloads

Overload Description
IsPartOf(Expression source, Expression target) Determines whether an Expression is part of another expression.
IsPartOf<T>(IQueryable<T> source, IQueryable<T> target) Determines whether an IQueryable<out T> is part of another query.

IsPartOf(Expression source, Expression target)

Determines whether an Expression is part of another expression.

public virtual Boolean IsPartOf(Expression source, Expression target)

Return Type

Boolean - A flag indicating whether the source is part of the target.

Parameters

Parameter Type Description
source Expression The source Expression .
target Expression The target Expression to parse.

Remarks

A source is part of a target if an Expression exists in the target's tree that is similar to the source.

IsPartOf<T>(IQueryable<T> source, IQueryable<T> target)

Determines whether an IQueryable<out T> is part of another query.

public virtual Boolean IsPartOf<T>(IQueryable<T> source, IQueryable<T> target)

Return Type

Boolean - A flag indicating whether the source is part of the target.

Parameters

Parameter Type Description
source IQueryable<T> The source IQueryable<out T> .
target IQueryable<T> The target IQueryable<out T> to parse.

Remarks

A source is part of a target if an Expression exists in the target's tree that is similar to the source.


Generated Copyright Version
02/22/2021 21:59:57 (c) Copyright 2020 Jeremy Likness. 0.9.7-beta