dotnet-db-context/PoweredSoft.DbContext.Core/IQueryableService.cs
2021-09-20 10:21:48 -04:00

12 lines
267 B
C#

using System.Linq;
using System.Threading;
namespace PoweredSoft.DbContext.Core
{
public interface IQueryableService : IQueryableOperationsService
{
bool CanHandle<T>(IQueryable<T> queryable);
bool CanHandle(IQueryable queryable);
}
}