ISelectDescriptor
Interface
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:
Inherited Members
Properties
Gets the name of the projected member.
C#
string ProjectedMemberName { get; }
The name of the projected member.
Gets the type of the projected member.
C#
Type ProjectedMemberType { get; }
The type of the projected member.
Methods
Creates a predicate selection expression used for collection selection.
C#
Expression CreateSelectExpression(Expression instance)
The instance expression, which will be used for selection.
Returns:A predicate selection expression.