<PackageReference Include="System.Reactive" Version="5.0.0" />

QueryablePlan<TResult>

public class QueryablePlan<TResult>
Represents an execution plan for join patterns represented by an expression tree.
using System.Linq.Expressions; using System.Runtime.CompilerServices; namespace System.Reactive.Joins { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public class QueryablePlan<[System.Runtime.CompilerServices.Nullable(2)] TResult> { public Expression Expression { get; } internal QueryablePlan(Expression expression) { Expression = expression; } } }