MethodExpression.MethodName Property

Definition

Gets or sets the name of the method that contains a custom LINQ query.

public:
 property System::String ^ MethodName { System::String ^ get(); void set(System::String ^ value); };
public string MethodName { get; set; }
member this.MethodName : string with get, set
Public Property MethodName As String

Property Value

The name of the method that contains the custom LINQ query.

Examples

The following example shows how to specify the FilterStandardPrice method in the QueryExtender control. The custom LINQ query is defined in a FilterStandardPrice method.

<asp:QueryExtender ID="QueryExtender1" runat="server"   
    TargetControlID="LinqDataSource1">  
  <asp:MethodExpression MethodName="FilterStandardPrice">  
  </asp:MethodExpression>  
  </asp:QueryExtender>  

Remarks

The MethodExpression object enables you to call a custom LINQ query that is defined in a method. You specify the method in the QueryExtender control in the page.

Applies to