共用方式為


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

屬性值

包含自訂 LINQ 查詢之方法的名稱。

範例

下列範例示範如何在 控制項中 QueryExtender 指定 FilterStandardPrice 方法。 自訂 LINQ 查詢是在 方法中 FilterStandardPrice 定義。

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

備註

物件 MethodExpression 可讓您呼叫方法中定義的自訂 LINQ 查詢。 您可以在頁面的 QueryExtender 控制項中指定 方法。

適用於