RGDataContextBaseSelectTEntity Method

Projects each element of a sequence into a new form.

Definition

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

Parameters

where  ExpressionFuncTEntity, Boolean  (Optional)
The where.
orderBy  RGQueryIRGOrderByExpressionTEntity
The order by.

Type Parameters

TEntity
The type of the entity.

Return Value

IQueryableTEntity
An IQueryableT of the specified type.

See Also