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

IQbservable

public interface IQbservable
Provides functionality to evaluate queries against a specific data source wherein the type of the data is not specified.
using System.Linq.Expressions; namespace System.Reactive.Linq { public interface IQbservable { Type ElementType { get; } Expression Expression { get; } IQbservableProvider Provider { get; } } }