dotnet-cqrs/PoweredSoft.CQRS.DynamicQuery.Abstractions/IQueryableProvider.cs
2021-02-02 19:01:29 -05:00

15 lines
377 B
C#

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