Click or drag to resize

SelfServicingExtensionMethods Methods

The SelfServicingExtensionMethods type exposes the following members.

Methods
  NameDescription
Public methodStatic memberFetchAsDataReader
Fetches the query as an open data reader.
Public methodStatic memberFetchAsDataReaderAsync(IDao, ITransaction, DynamicQuery, CommandBehavior)
Async variant of FetchAsDataReader(IDao, ITransaction, DynamicQuery, CommandBehavior). Fetches the query as an open data reader.
Public methodStatic memberFetchAsDataReaderAsync(IDao, ITransaction, DynamicQuery, CommandBehavior, CancellationToken)
Async variant of FetchAsDataReader(IDao, ITransaction, DynamicQuery, CommandBehavior). Fetches the query as an open data reader.
Public methodStatic memberFetchAsDataTable(IDao, DynamicQuery)
Fetches the specified query into a new DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTable(IDao, DynamicQuery, ITransaction)
Fetches the specified query into a new DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTable(IDao, DynamicQuery, DataTable)
Fetches the specified query into the DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTable(IDao, DynamicQuery, DataTable, ITransaction)
Fetches the specified query into the DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery)
Async variant of FetchAsDataTable(IDao, DynamicQuery). Fetches the specified query into a new DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery, ITransaction)
Async variant of FetchAsDataTable(IDao, DynamicQuery, ITransaction). Fetches the specified query into a new DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery, DataTable)
Async variant of FetchAsDataTable(IDao, DynamicQuery, DataTable). Fetches the specified query into the DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery, CancellationToken)
Async variant of FetchAsDataTable(IDao, DynamicQuery). Fetches the specified query into a new DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery, ITransaction, CancellationToken)
Async variant of FetchAsDataTable(IDao, DynamicQuery, ITransaction). Fetches the specified query into a new DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery, DataTable, ITransaction)
Async variant of FetchAsDataTable(IDao, DynamicQuery, DataTable, ITransaction). Fetches the specified query into the DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(IDao, DynamicQuery, DataTable, CancellationToken)
Async variant of FetchAsDataTable(IDao, DynamicQuery, DataTable). Fetches the specified query into the DataTable specified and returns that datatable.
Public methodStatic memberFetchAsDataTableAsync(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.
Public methodStatic memberFetchAsProjection
Fetches the query as a projection, using the projector specified.
Public methodStatic memberFetchAsProjectionAsync(IDao, ITransaction, DynamicQuery, IGeneralDataProjector)
Async variant of FetchAsProjection(IDao, ITransaction, DynamicQuery, IGeneralDataProjector). Fetches the query as a projection, using the projector specified.
Public methodStatic memberFetchAsProjectionAsync(IDao, ITransaction, DynamicQuery, IGeneralDataProjector, CancellationToken)
Async variant of FetchAsProjection(IDao, ITransaction, DynamicQuery, IGeneralDataProjector). Fetches the query as a projection, using the projector specified.
Public methodStatic memberFetchQuery(IDao, DynamicQuery)
Fetches the query specified and returns the results in plain object arrays, one object array per returned row of the query specified.
Public methodStatic memberFetchQuery(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.
Public methodStatic memberFetchQuery<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.
Public methodStatic memberFetchQuery<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.
Public methodStatic memberFetchQueryAsync(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.
Public methodStatic memberFetchQueryAsync(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.
Public methodStatic memberFetchQueryAsync(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.
Public methodStatic memberFetchQueryAsync(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.
Public methodStatic memberFetchQueryAsync<TElement>(IDao, DynamicQuery<TElement>)
Public methodStatic memberFetchQueryAsync<TElement>(IDao, DynamicQuery<TElement>, ITransaction)
Public methodStatic memberFetchQueryAsync<TElement>(IDao, DynamicQuery<TElement>, CancellationToken)
Public methodStatic memberFetchQueryAsync<TElement>(IDao, DynamicQuery<TElement>, ITransaction, CancellationToken)
Public methodStatic memberFetchQueryFromSource<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.
Public methodStatic memberFetchQueryFromSource<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.
Public methodStatic memberFetchQueryFromSourceAsync<TElement>(IDao, DynamicQuery<TElement>, IRetrievalQuery)
Public methodStatic memberFetchQueryFromSourceAsync<TElement>(IDao, DynamicQuery<TElement>, IRetrievalQuery, ITransaction)
Public methodStatic memberFetchQueryFromSourceAsync<TElement>(IDao, DynamicQuery<TElement>, IRetrievalQuery, CancellationToken)
Public methodStatic memberFetchQueryFromSourceAsync<TElement>(IDao, DynamicQuery<TElement>, IRetrievalQuery, ITransaction, CancellationToken)
Public methodStatic memberGetFirst<TEntity>(EntityQuery<TEntity>)
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
Public methodStatic memberGetFirst<TEntity>(EntityQuery<TEntity>, ITransaction)
Fetches the first entity of the set returned by the query and returns that entity, if any, otherwise null.
Public methodStatic memberGetFirst<T>(IDao, DynamicQuery<T>)
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
Public methodStatic memberGetFirst<T>(IDao, DynamicQuery<T>, ITransaction)
Fetches the first object of the set returned by the query and returns that object, if any, otherwise null.
Public methodStatic memberGetFirstAsync<TEntity>(EntityQuery<TEntity>)
Public methodStatic memberGetFirstAsync<TEntity>(EntityQuery<TEntity>, ITransaction)
Public methodStatic memberGetFirstAsync<TEntity>(EntityQuery<TEntity>, CancellationToken)
Public methodStatic memberGetFirstAsync<T>(IDao, DynamicQuery<T>)
Public methodStatic memberGetFirstAsync<TEntity>(EntityQuery<TEntity>, ITransaction, CancellationToken)
Public methodStatic memberGetFirstAsync<T>(IDao, DynamicQuery<T>, ITransaction)
Public methodStatic memberGetFirstAsync<T>(IDao, DynamicQuery<T>, CancellationToken)
Public methodStatic memberGetFirstAsync<T>(IDao, DynamicQuery<T>, ITransaction, CancellationToken)
Public methodStatic memberGetMulti<TEntity>
Fetches the query specified into the collection specified.
Public methodStatic memberGetMultiAsync<TEntity>(IEntityCollection, EntityQuery<TEntity>)
Public methodStatic memberGetMultiAsync<TEntity>(IEntityCollection, EntityQuery<TEntity>, CancellationToken)
Public methodStatic memberGetScalar<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.
Public methodStatic memberGetScalar<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.
Public methodStatic memberGetScalarAsync<TValue>(IDao, DynamicQuery)
Async variant of 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.
Public methodStatic memberGetScalarAsync<TValue>(IDao, DynamicQuery, ITransaction)
Async variant of 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.
Public methodStatic memberGetScalarAsync<TValue>(IDao, DynamicQuery, CancellationToken)
Async variant of 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.
Public methodStatic memberGetScalarAsync<TValue>(IDao, DynamicQuery, ITransaction, CancellationToken)
Async variant of 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.
Public methodStatic memberGetSingle<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.
Public methodStatic memberGetSingle<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.
Public methodStatic memberGetSingle<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.
Public methodStatic memberGetSingle<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.
Public methodStatic memberGetSingleAsync<TEntity>(EntityQuery<TEntity>)
Public methodStatic memberGetSingleAsync<TEntity>(EntityQuery<TEntity>, ITransaction)
Public methodStatic memberGetSingleAsync<TEntity>(EntityQuery<TEntity>, CancellationToken)
Public methodStatic memberGetSingleAsync<T>(IDao, DynamicQuery<T>)
Public methodStatic memberGetSingleAsync<TEntity>(EntityQuery<TEntity>, ITransaction, CancellationToken)
Public methodStatic memberGetSingleAsync<T>(IDao, DynamicQuery<T>, ITransaction)
Public methodStatic memberGetSingleAsync<T>(IDao, DynamicQuery<T>, CancellationToken)
Public methodStatic memberGetSingleAsync<T>(IDao, DynamicQuery<T>, ITransaction, CancellationToken)
Top
See Also