SelfServicingExtensionMethods Class |
Namespace: SD.LLBLGen.Pro.QuerySpec.SelfServicing
The SelfServicingExtensionMethods type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | FetchAsDataReader |
Fetches the query as an open data reader.
|
![]() ![]() | FetchAsDataTable(IDao, DynamicQuery) |
Fetches the specified query into a new DataTable specified and returns that datatable.
|
![]() ![]() | FetchAsDataTable(IDao, DynamicQuery, ITransaction) |
Fetches the specified query into a new DataTable specified and returns that datatable.
|
![]() ![]() | FetchAsDataTable(IDao, DynamicQuery, DataTable) |
Fetches the specified query into the DataTable specified and returns that datatable.
|
![]() ![]() | FetchAsDataTable(IDao, DynamicQuery, DataTable, ITransaction) |
Fetches the specified query into the DataTable specified and returns that datatable.
|
![]() ![]() | FetchAsProjection |
Fetches the query as a projection, using the projector specified.
|
![]() ![]() | FetchQuery(IDao, DynamicQuery) |
Fetches the query specified and returns the results in plain object arrays, one object array per returned row of the query specified.
|
![]() ![]() | FetchQuery(IDao, DynamicQuery, ITransaction) |
Fetches the query specified and returns the results in plain object arrays, one object array per returned row of the query specified.
|
![]() ![]() | FetchQuery<TElement>(IDao, DynamicQuery<TElement>) |
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
|
![]() ![]() | FetchQuery<TElement>(IDao, DynamicQuery<TElement>, ITransaction) |
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
|
![]() ![]() | FetchQueryFromSource<TElement>(IDao, DynamicQuery<TElement>, IRetrievalQuery) |
Fetches the query which projection specified from the source query specified. Typically used to fetch a typed view from a
stored procedure source.
|
![]() ![]() | FetchQueryFromSource<TElement>(IDao, DynamicQuery<TElement>, IRetrievalQuery, ITransaction) |
Fetches the query which projection specified from the source query specified. Typically used to fetch a typed view from a
stored procedure source.
|
![]() ![]() | GetFirst<TEntity>(EntityQuery<TEntity>) |
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
|
![]() ![]() | GetFirst<TEntity>(EntityQuery<TEntity>, ITransaction) |
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
|
![]() ![]() | GetFirst<T>(IDao, DynamicQuery<T>) |
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
|
![]() ![]() | GetFirst<T>(IDao, DynamicQuery<T>, ITransaction) |
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
|
![]() ![]() | GetMulti<TEntity> |
Fetches the query specified into the collection specified.
|
![]() ![]() | GetScalar<TValue>(IDao, DynamicQuery) |
Fetches a scalar value using the query specified, and returns this value typed as TValue, using a cast. The query specified will be converted to a
scalar query prior to execution.
|
![]() ![]() | GetScalar<TValue>(IDao, DynamicQuery, ITransaction) |
Fetches a scalar value using the query specified, and returns this value typed as TValue, using a cast. The query specified will be converted to a
scalar query prior to execution.
|
![]() ![]() | GetSingle<TEntity>(EntityQuery<TEntity>) |
Fetches the single entity of the set returned by the query and returns that entity. If there are no elements or more than 1 element,
a NotSupportedException will be thrown.
|
![]() ![]() | GetSingle<TEntity>(EntityQuery<TEntity>, ITransaction) |
Fetches the single entity of the set returned by the query and returns that entity. If there are no elements or more than 1 element,
a NotSupportedException will be thrown.
|
![]() ![]() | GetSingle<T>(IDao, DynamicQuery<T>) |
Fetches the single object of the set returned by the query and returns that object. If there are no elements or more than 1 element,
a NotSupportedException will be thrown.
|
![]() ![]() | GetSingle<T>(IDao, DynamicQuery<T>, ITransaction) |
Fetches the single object of the set returned by the query and returns that object. If there are no elements or more than 1 element,
a NotSupportedException will be thrown.
|