Interface ISelectDescriptor
Represents a type projection abstraction that knows how to create predicate selection expression.
Namespace: Telerik.Windows.Data
Assembly: Telerik.Windows.Data.dll
Syntax
public interface ISelectDescriptor : INotifyPropertyChanged
Properties
ProjectedMemberName
Gets the name of the projected member.
Declaration
string ProjectedMemberName { get; }
Property Value
System.String
The name of the projected member. |
ProjectedMemberType
Gets the type of the projected member.
Declaration
Type ProjectedMemberType { get; }
Property Value
System.Type
The type of the projected member. |
Methods
CreateSelectExpression(Expression)
Creates a predicate selection expression used for collection selection.
Declaration
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 predicate selection expression. |