EntitySqlParser.ParseLambda(String, DbVariableReferenceExpression[]) Method
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.
Parse a specific query
with a specific set variables
and produce a DbLambda.
public:
System::Data::Common::CommandTrees::DbLambda ^ ParseLambda(System::String ^ query, ... cli::array <System::Data::Common::CommandTrees::DbVariableReferenceExpression ^> ^ variables);
public System.Data.Common.CommandTrees.DbLambda ParseLambda (string query, params System.Data.Common.CommandTrees.DbVariableReferenceExpression[] variables);
member this.ParseLambda : string * System.Data.Common.CommandTrees.DbVariableReferenceExpression[] -> System.Data.Common.CommandTrees.DbLambda
Public Function ParseLambda (query As String, ParamArray variables As DbVariableReferenceExpression()) As DbLambda
Parameters
- query
- String
The query to be parsed.
- variables
- DbVariableReferenceExpression[]
The optional query variables.
Returns
The ParseResult containing DbCommandTree and information describing inline function definitions if any.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.