dotnet-db-context/PoweredSoft.DbContext.Core/IQueryableService.cs

12 lines
267 B
C#
Raw Normal View History

2021-09-20 10:21:48 -04:00
using System.Linq;
using System.Threading;
namespace PoweredSoft.DbContext.Core
{
public interface IQueryableService : IQueryableOperationsService
{
bool CanHandle<T>(IQueryable<T> queryable);
bool CanHandle(IQueryable queryable);
}
}