Interface IQueryableRepositoryOf<T>
- Namespace
- JobFlow.Core.Infrastructure.Repository
- Assembly
- JobFlow.Core.dll
public interface IQueryableRepositoryOf<T> : IRepositoryOf<T>, IBaseRepository where T : class
Type Parameters
T
- Inherited Members
- Extension Methods
Methods
Query()
Utilize a LINQ query against the data store.
IQueryable<T> Query()
Returns
- IQueryable<T>
Remarks
Generally speaking, this should be considered an internal interface, with most entity interactions going through the appropriate specialized _repository.
Exceptions
- InvalidOperationException
Thrown when the data store does not support querying.