MethodExpression.MethodName Propriedade

Definição

Obtém ou define o nome do método que contém uma consulta LINQ personalizada.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

Valor da propriedade

String

O nome do método que contém a consulta LINQ personalizada.The name of the method that contains the custom LINQ query.

Exemplos

O exemplo a seguir mostra como especificar o FilterStandardPrice método no QueryExtender controle.The following example shows how to specify the FilterStandardPrice method in the QueryExtender control. A consulta LINQ personalizada é definida em um FilterStandardPrice método.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>  

Comentários

O MethodExpression objeto permite que você chame uma consulta LINQ personalizada que é definida em um método.The MethodExpression object enables you to call a custom LINQ query that is defined in a method. Você especifica o método no QueryExtender controle na página.You specify the method in the QueryExtender control in the page.

Aplica-se a