dotnet-cqrs/PoweredSoft.CQRS.DynamicQuery.Abstractions/IQueryableProvider.cs

12 lines
309 B
C#
Raw Normal View History

2023-10-02 11:25:45 -04:00
using System.Linq;
2021-02-02 19:01:29 -05:00
using System.Threading;
using System.Threading.Tasks;
namespace PoweredSoft.CQRS.DynamicQuery.Abstractions
{
public interface IQueryableProvider<TSource>
{
2023-10-02 11:25:45 -04:00
Task<IQueryable<TSource>> GetQueryableAsync(object query, CancellationToken cancellationToken = default);
2021-02-02 19:01:29 -05:00
}
}