MethodExpression.MethodName 属性

定义

获取或设置包含自定义 LINQ 查询的方法的名称。

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

属性值

String

其中包含自定义 LINQ 查询的方法的名称。

示例

下面的示例演示如何 FilterStandardPrice 在控件中指定方法 QueryExtender 。 自定义 LINQ 查询是在方法中定义的 FilterStandardPrice

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

注解

使用 MethodExpression 对象可以调用在方法中定义的自定义 LINQ 查询。 在 QueryExtender 页面的控件中指定方法。

适用于