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.
| |
FetchAsDataReaderAsync(IDao, ITransaction, DynamicQuery, CommandBehavior) |
Async variant of FetchAsDataReader(IDao, ITransaction, DynamicQuery, CommandBehavior).
Fetches the query as an open data reader.
| |
FetchAsDataReaderAsync(IDao, ITransaction, DynamicQuery, CommandBehavior, CancellationToken) |
Async variant of FetchAsDataReader(IDao, ITransaction, DynamicQuery, CommandBehavior).
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.
| |
FetchAsDataTableAsync(IDao, DynamicQuery) |
Async variant of FetchAsDataTable(IDao, DynamicQuery).
Fetches the specified query into a new DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, ITransaction) |
Async variant of FetchAsDataTable(IDao, DynamicQuery, ITransaction).
Fetches the specified query into a new DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, DataTable) |
Async variant of FetchAsDataTable(IDao, DynamicQuery, DataTable).
Fetches the specified query into the DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, CancellationToken) |
Async variant of FetchAsDataTable(IDao, DynamicQuery).
Fetches the specified query into a new DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, ITransaction, CancellationToken) |
Async variant of FetchAsDataTable(IDao, DynamicQuery, ITransaction).
Fetches the specified query into a new DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, DataTable, ITransaction) |
Async variant of FetchAsDataTable(IDao, DynamicQuery, DataTable, ITransaction).
Fetches the specified query into the DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, DataTable, CancellationToken) |
Async variant of FetchAsDataTable(IDao, DynamicQuery, DataTable).
Fetches the specified query into the DataTable specified and returns that datatable.
| |
FetchAsDataTableAsync(IDao, DynamicQuery, DataTable, ITransaction, CancellationToken) |
Async variant of 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.
| |
FetchAsProjectionAsync(IDao, ITransaction, DynamicQuery, IGeneralDataProjector) |
Async variant of FetchAsProjection(IDao, ITransaction, DynamicQuery, IGeneralDataProjector).
Fetches the query as a projection, using the projector specified.
| |
FetchAsProjectionAsync(IDao, ITransaction, DynamicQuery, IGeneralDataProjector, CancellationToken) |
Async variant of FetchAsProjection(IDao, ITransaction, DynamicQuery, IGeneralDataProjector).
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.
| |
FetchQueryTElement(IDao, DynamicQueryTElement) |
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
| |
FetchQueryTElement(IDao, DynamicQueryTElement, 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.
| |
FetchQueryAsync(IDao, DynamicQuery) |
Async variant of 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.
| |
FetchQueryAsync(IDao, DynamicQuery, ITransaction) |
Async variant of 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.
| |
FetchQueryAsync(IDao, DynamicQuery, CancellationToken) |
Async variant of 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.
| |
FetchQueryAsync(IDao, DynamicQuery, ITransaction, CancellationToken) |
Async variant of 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.
| |
FetchQueryAsyncTElement(IDao, DynamicQueryTElement) |
Async variant of FetchQueryTElement(IDao, DynamicQueryTElement).
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
| |
FetchQueryAsyncTElement(IDao, DynamicQueryTElement, ITransaction) |
Async variant of FetchQueryTElement(IDao, DynamicQueryTElement, 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.
| |
FetchQueryAsyncTElement(IDao, DynamicQueryTElement, CancellationToken) |
Async variant of FetchQueryTElement(IDao, DynamicQueryTElement).
Fetches the query specified and returns the results in a list of TElement objects, which are created using the projectorFunc of the query specified.
| |
FetchQueryAsyncTElement(IDao, DynamicQueryTElement, ITransaction, CancellationToken) |
Async variant of FetchQueryTElement(IDao, DynamicQueryTElement, 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.
| |
FetchQueryFromSourceTElement(IDao, DynamicQueryTElement, IRetrievalQuery) |
Fetches the query which projection specified from the source query specified. Typically used to fetch a typed view from a
stored procedure source.
| |
FetchQueryFromSourceTElement(IDao, DynamicQueryTElement, 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.
| |
FetchQueryFromSourceAsyncTElement(IDao, DynamicQueryTElement, IRetrievalQuery) |
Async variant of FetchQueryFromSourceTElement(IDao, DynamicQueryTElement, IRetrievalQuery)
Fetches the query which projection specified from the source query specified. Typically used to fetch a typed view from a
stored procedure source.
| |
FetchQueryFromSourceAsyncTElement(IDao, DynamicQueryTElement, IRetrievalQuery, ITransaction) |
Async variant of FetchQueryFromSourceTElement(IDao, DynamicQueryTElement, 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.
| |
FetchQueryFromSourceAsyncTElement(IDao, DynamicQueryTElement, IRetrievalQuery, CancellationToken) |
Async variant of FetchQueryFromSourceTElement(IDao, DynamicQueryTElement, IRetrievalQuery)
Fetches the query which projection specified from the source query specified. Typically used to fetch a typed view from a
stored procedure source.
| |
FetchQueryFromSourceAsyncTElement(IDao, DynamicQueryTElement, IRetrievalQuery, ITransaction, CancellationToken) |
Async variant of FetchQueryFromSourceTElement(IDao, DynamicQueryTElement, 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.
| |
GetFirstTEntity(EntityQueryTEntity) |
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
| |
GetFirstTEntity(EntityQueryTEntity, ITransaction) |
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
| |
GetFirstT(IDao, DynamicQueryT) |
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
| |
GetFirstT(IDao, DynamicQueryT, ITransaction) |
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
| |
GetFirstAsyncTEntity(EntityQueryTEntity) |
Async variant of GetFirstTEntity(EntityQueryTEntity).
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
| |
GetFirstAsyncTEntity(EntityQueryTEntity, ITransaction) |
Async variant of GetFirstTEntity(EntityQueryTEntity, ITransaction).
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
| |
GetFirstAsyncTEntity(EntityQueryTEntity, CancellationToken) |
Async variant of GetFirstTEntity(EntityQueryTEntity).
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
| |
GetFirstAsyncT(IDao, DynamicQueryT) |
Async variant of GetFirstT(IDao, DynamicQueryT).
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
| |
GetFirstAsyncTEntity(EntityQueryTEntity, ITransaction, CancellationToken) |
Async variant of GetFirstTEntity(EntityQueryTEntity, ITransaction).
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
| |
GetFirstAsyncT(IDao, DynamicQueryT, ITransaction) |
Async variant of GetFirstT(IDao, DynamicQueryT, ITransaction).
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
| |
GetFirstAsyncT(IDao, DynamicQueryT, CancellationToken) |
Async variant of GetFirstT(IDao, DynamicQueryT).
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
| |
GetFirstAsyncT(IDao, DynamicQueryT, ITransaction, CancellationToken) |
Async variant of GetFirstT(IDao, DynamicQueryT, ITransaction).
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
| |
GetMultiTEntity |
Fetches the query specified into the collection specified.
| |
GetMultiAsyncTEntity(IEntityCollection, EntityQueryTEntity) |
Async variant of GetMultiTEntity(IEntityCollection, EntityQueryTEntity).
Fetches the query specified into the collection specified.
| |
GetMultiAsyncTEntity(IEntityCollection, EntityQueryTEntity, CancellationToken) |
Async variant of GetMultiTEntity(IEntityCollection, EntityQueryTEntity).
Fetches the query specified into the collection specified.
| |
GetScalarTValue(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.
| |
GetScalarTValue(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.
| |
GetScalarAsyncTValue(IDao, DynamicQuery) |
Async variant of GetScalarTValue(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.
| |
GetScalarAsyncTValue(IDao, DynamicQuery, ITransaction) |
Async variant of GetScalarTValue(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.
| |
GetScalarAsyncTValue(IDao, DynamicQuery, CancellationToken) |
Async variant of GetScalarTValue(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.
| |
GetScalarAsyncTValue(IDao, DynamicQuery, ITransaction, CancellationToken) |
Async variant of GetScalarTValue(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.
| |
GetSingleTEntity(EntityQueryTEntity) |
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.
| |
GetSingleTEntity(EntityQueryTEntity, 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.
| |
GetSingleT(IDao, DynamicQueryT) |
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.
| |
GetSingleT(IDao, DynamicQueryT, 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.
| |
GetSingleAsyncTEntity(EntityQueryTEntity) |
Async variant of GetSingleTEntity(EntityQueryTEntity).
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.
| |
GetSingleAsyncTEntity(EntityQueryTEntity, ITransaction) |
Async variant of GetSingleTEntity(EntityQueryTEntity, 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.
| |
GetSingleAsyncTEntity(EntityQueryTEntity, CancellationToken) |
Async variant of GetSingleTEntity(EntityQueryTEntity).
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.
| |
GetSingleAsyncT(IDao, DynamicQueryT) |
Async variant of GetSingleT(IDao, DynamicQueryT).
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.
| |
GetSingleAsyncTEntity(EntityQueryTEntity, ITransaction, CancellationToken) |
Async variant of GetSingleTEntity(EntityQueryTEntity, 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.
| |
GetSingleAsyncT(IDao, DynamicQueryT, ITransaction) |
Async variant of GetSingleT(IDao, DynamicQueryT, 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.
| |
GetSingleAsyncT(IDao, DynamicQueryT, CancellationToken) |
Async variant of GetSingleT(IDao, DynamicQueryT).
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.
| |
GetSingleAsyncT(IDao, DynamicQueryT, ITransaction, CancellationToken) |
Async variant of GetSingleT(IDao, DynamicQueryT, 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.
|