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

15 lines
377 B
C#
Raw Normal View History

2021-02-02 19:01:29 -05:00
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);
}
}