Index > ExpressionPowerTools.Core > ExpressionPowerTools.Core.Comparisons > ExpressionEvaluator > IsPartOf
Determines whether an Expression is part of another expression.
| 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. |
Determines whether an Expression is part of another expression.
public virtual Boolean IsPartOf(Expression source, Expression target)Boolean - A flag indicating whether the source is part of the target.
| Parameter | Type | Description |
|---|---|---|
source |
Expression | The source Expression . |
target |
Expression | The target Expression to parse. |
A source is part of a target if an Expression exists in the target's tree that is similar to the source.
Determines whether an IQueryable<out T> is part of another query.
public virtual Boolean IsPartOf<T>(IQueryable<T> source, IQueryable<T> target)Boolean - A flag indicating whether the source is part of the target.
| Parameter | Type | Description |
|---|---|---|
source |
IQueryable<T> | The source IQueryable<out T> . |
target |
IQueryable<T> | The target IQueryable<out T> to parse. |
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 |