10 lines
285 B
C#
10 lines
285 B
C#
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Svrnty.CQRS.DynamicQuery.Abstractions;
|
|
|
|
public interface IQueryableProvider<TSource>
|
|
{
|
|
Task<IQueryable<TSource>> GetQueryableAsync(object query, CancellationToken cancellationToken = default);
|
|
} |