New to Telerik UI for WPFStart a free 30-day trial

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

Definition

Namespace:Telerik.Windows.Data

Assembly:Telerik.Windows.Data.dll

Syntax:

C#
public interface ISelectDescriptor : INotifyPropertyChanged

Derived Classes: ConstantSelectDescriptorHierarchySelectDescriptorTypedSelectDescriptorSelectDescriptor

Inherited Members INotifyPropertyChanged.PropertyChanged

Properties

Gets the name of the projected member.

C#
string ProjectedMemberName { get; }
Property Value:

The name of the projected member.

Gets the type of the projected member.

C#
Type ProjectedMemberType { get; }
Property Value:

The type of the projected member.

Methods

Creates a predicate selection expression used for collection selection.

C#
Expression CreateSelectExpression(Expression instance)
Parameters:instanceExpression

The instance expression, which will be used for selection.

Returns:

Expression

A predicate selection expression.