Interface IQueryFactory
Factory contract for creating entity queries.
Namespace: Kephas.Data.LLBLGen.Entities
Assembly: Kephas.Data.LLBLGen.dll
Syntax
public interface IQueryFactory
Methods
| Improve this Doc View SourceToQueryable<TEntity>()
Returns the data source to use in a Linq query for the entity type specified.
Declaration
IQueryable<TEntity> ToQueryable<TEntity>()
where TEntity : class
Returns
Type | Description |
---|---|
System.Linq.IQueryable<TEntity> | The requested data source. |
Type Parameters
Name | Description |
---|---|
TEntity | The type of the entity to get the data source for. |