Click or drag to resize

RGDataContextBaseSelectTEntity Method

Projects each element of a sequence into a new form.

Namespace:  Recrovit.RecroGridFramework.Data
Assembly:  Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 2.6.0
Syntax
C#
public IQueryable<TEntity> Select<TEntity>(
	Expression<Func<TEntity, bool>> where = null,
	params RGQueryIRGOrderByExpression<TEntity>[] orderBy
)
where TEntity : class

Parameters

where (Optional)
Type: System.Linq.ExpressionsExpressionFuncTEntity, Boolean
The where.
orderBy
Type: Recrovit.RecroGridFramework.DataRGQueryIRGOrderByExpressionTEntity
The order by.

Type Parameters

TEntity
The type of the entity.

Return Value

Type: IQueryableTEntity
An IQueryableT of the specified type.
See Also