InterfaceISelectDescriptor
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:
cs-api-definition
public interface ISelectDescriptor : INotifyPropertyChanged
Inherited Members
Properties
ProjectedMemberName
Gets the name of the projected member.
Declaration
cs-api-definition
string ProjectedMemberName { get; }
Property Value
The name of the projected member.
ProjectedMemberType
Gets the type of the projected member.
Declaration
cs-api-definition
Type ProjectedMemberType { get; }
Property Value
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
The instance expression, which will be used for selection.
Returns
A predicate selection expression.