<PackageReference Include="Relativity.Transfer.Client" Version="7.1.40" />
QueryablePattern<TSource1, TSource2>
using System.
Linq.
Expressions;
using System.
Reactive.
Linq;
using System.
Reflection;
namespace System.
Reactive.
Joins
{
public class QueryablePattern<
TSource1,
TSource2> :
QueryablePattern
{
internal QueryablePattern(
Expression expression)
:
base(
expression)
{
}
public QueryablePattern<
TSource1,
TSource2,
TSource3>
And<
TSource3>(
IObservable<
TSource3>
other)
{
if (
other ==
null)
throw new ArgumentNullException(
"other");
MethodInfo method =
typeof(
QueryablePattern<
TSource1,
TSource2>).
GetMethod(
"And").
MakeGenericMethod(
typeof(
TSource3));
return new QueryablePattern<
TSource1,
TSource2,
TSource3>((
Expression)
Expression.
Call(
base.
Expression,
method,
Qbservable.
GetSourceExpression<
TSource3>(
other)));
}
public QueryablePlan<
TResult>
Then<
TResult>(
Expression<
Func<
TSource1,
TSource2,
TResult>>
selector)
{
if (
selector ==
null)
throw new ArgumentNullException(
"selector");
MethodInfo method =
typeof(
QueryablePattern<
TSource1,
TSource2>).
GetMethod(
"Then").
MakeGenericMethod(
typeof(
TResult));
return new QueryablePlan<
TResult>((
Expression)
Expression.
Call(
base.
Expression,
method,
selector));
}
}
}