dotnet-cqrs/PoweredSoft.CQRS.DynamicQuery.Abstractions/IQueryableProvider.cs
2023-10-02 11:25:45 -04:00

12 lines
309 B
C#

using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace PoweredSoft.CQRS.DynamicQuery.Abstractions
{
public interface IQueryableProvider<TSource>
{
Task<IQueryable<TSource>> GetQueryableAsync(object query, CancellationToken cancellationToken = default);
}
}