Interface
ISelectDescriptor

Represents a type projection abstraction that knows how to create predicate selection expression.

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.dll

Syntax:

cs-api-definition
public interface ISelectDescriptor : INotifyPropertyChanged

Inherited Members INotifyPropertyChanged.PropertyChanged

Properties

ProjectedMemberName

Gets the name of the projected member.

Declaration

cs-api-definition
string ProjectedMemberName { get; }

Property Value

string

The name of the projected member.

ProjectedMemberType

Gets the type of the projected member.

Declaration

cs-api-definition
Type ProjectedMemberType { get; }

Property Value

Type

The type of the projected member.

Methods

CreateSelectExpression(Expression)

Creates a predicate selection expression used for collection selection.

Declaration

cs-api-definition
Expression CreateSelectExpression(Expression instance)

Parameters

instance

Expression

The instance expression, which will be used for selection.

Returns

Expression

A predicate selection expression.