Class SelectDescriptor
Represents declarative selection.
Inherited Members
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public class SelectDescriptor : DescriptorBase, ISuspendNotifications, ISelectDescriptor, INotifyPropertyChanged
Constructors
SelectDescriptor()
Declaration
public SelectDescriptor()
Properties
ProjectedMemberName
Gets or sets the name of the projected member.
Declaration
public string ProjectedMemberName { get; set; }
Property Value
System.String
The name of the projected member. |
Implements
ProjectedMemberType
Gets or sets the type of the projected member.
Declaration
public Type ProjectedMemberType { get; set; }
Property Value
System.Type
The type of the projected member. |
Implements
SourceMemberName
Gets or sets the name of the source member.
Declaration
public string SourceMemberName { get; set; }
Property Value
System.String
The name of the source member. |
Methods
CreateSelectExpression(Expression)
Creates a predicate expression used for collection selection.
Declaration
public virtual Expression CreateSelectExpression(Expression instance)
Parameters
System.Linq.Expressions.Expression
instance
The instance expression, which will be used for selection. |
Returns
System.Linq.Expressions.Expression
A selection expression. |