MethodExpression.MethodName Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.